AllowCompoundNounProcessing 属性

       

如果该属性值为 True,则 Microsoft Word 在朝鲜语文档中执行拼写检查时将忽略复合名词。Boolean 类型,可读写。

expression.AllowCompoundNounProcessing

expression   必需。该表达式返回一个 Options 对象。

说明

有关在 Word 中使用亚洲语言的详细信息,请参阅用于亚洲语言的 Word 功能

示例

本示例询问用户:Microsoft Word 在朝鲜语文档中执行拼写检查时,是否忽略复合名词。

If Options.AllowCompoundNounProcessing = False Then
    x = MsgBox("Do you want to ignore compound " _
        & "nouns when checking spelling?", _
        vbYesNo)
    If x = vbYes Then
        Options.AllowCompoundNounProcessing = True
        MsgBox "Compound nouns will be ignored!"
    End If
End If