CheckHangulEndings Property 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