KoreanProcessCompound 属性

       

如果该值为 True,则 Microsoft Excel 在使用拼写检查时将处理朝鲜语复合名词。Boolean 类型,可读写。

expression.KoreanProcessCompound

expression   必需。该表达式返回“应用于”列表中的对象之一。

示例

在本示例中,Microsoft Excel 将检查处理朝鲜语复合名词的拼写检查选项是否可用,并通知给用户。

Sub KoreanSpellCheck()

    If Application.SpellingOptions.KoreanProcessCompound = True Then
        MsgBox "The spell checking feature to process Korean compound nouns is on."
    Else
        MsgBox "The spell checking feature to process Korean compound nouns is off."
    End If

End Sub