Share via


KoreanUseAutoChangeList Property

This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release.

When set to True, this enables Microsoft Excel to use the auto-change list for Korean words when using the spelling checker. Read/write Boolean.

expression.KoreanUseAutoChangeList

expression   Required. An expression that returns one of the objects in the Applies To list.

Example

In this example, Microsoft Excel checks to see if the spell checking option to auto-change Korean words is on or off and notifies the user accordingly.

  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