Options.CheckHangulEndings property (Word)
True if Microsoft Word automatically detects Hangul endings and ignores them during conversion from Hangul to Hanja. Read/write Boolean.
Syntax
expression. CheckHangulEndings
expression An expression that returns an Options object.
Remarks
If converting from Hanja to Hangul, this property is ignored.
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
See also
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.