expression.KoreanCombineAux
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 option to combine Korean auxiliary verbs and adjectives when checking spelling is on or off and notifies the user accordingly.
Sub KoreanSpellCheck()
If Application.SpellingOptions.KoreanCombineAux = True Then
MsgBox "The option to combine Korean auxiliary verbs and adjectives while checking spelling is on."
Else
MsgBox "The option to combine Korean auxiliary verbs and adjectives while checking spelling is off."
End If
End Sub