KoreanUseAutoChangeList 属性

       

如果该值为 True,则 Microsoft Excel 将在使用拼写检查时使用朝鲜语自动更改列表。Boolean 类型,可读写。

expression.KoreanUseAutoChangeList

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

示例

本示例中,Microsoft Excel 将检查自动修改朝鲜语的拼写检查选项是否可用,并通知给用户。

Sub KoreanSpellCheck()

    If Application.SpellingOptions.KoreanUseAutoChangeList = True Then
        MsgBox "The spell checking feature to auto-change Korean words is on."
    Else
        MsgBox "The spell checking feature to auto-change Korean words is off."
    End If

End Sub