KoreanProcessCompound Property

Microsoft Excel Visual Basic

KoreanProcessCompound Property

       

When set to True, this enables Microsoft Excel to process Korean compound nouns when using the spelling checker. Read/write Boolean.

expression.KoreanProcessCompound

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 process Korean compound nouns is on or off and notifies the user accordingly.

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