Options.CheckHangulEndings Property

Word Developer Reference

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.

Visual Basic for Applications
  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