SpellingOptions.KoreanUseAutoChangeList property (Excel)
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.
Syntax
expression.KoreanUseAutoChangeList
expression A variable that represents a SpellingOptions object.
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
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.