expression.CheckHangulEndings
expression Required. An expression that returns an Options object.
Remarks
If converting from Hanja to Hangul, this property is ignored.
For more information on using Word with Asian languages, see Word features for Asian languages.
Example
This example asks the user whether to set Microsoft Word to automatically detect Hangul endings and ignore them during conversion from Hangul to hanja.
x = MsgBox("Check Hangul endings during " _
& "conversion from Hangul to Hanja?", vbYesNo)
If x = vbYes Then
Options.CheckHangulEndings = True
Else
Options.CheckHangulEndings = False
End If