Options.HangulHanjaFastConversion property (Word)
True if Microsoft Word automatically converts a word with only one suggestion during conversion between Hangul and Hanja. Read/write Boolean.
Syntax
expression. HangulHanjaFastConversion
expression An expression that returns an Options object.
Example
This example asks the user whether to set Microsoft Word to use fast conversion during conversion between Hangul and Hanja.
x = MsgBox("Use fast conversion?", vbYesNo)
If x = vbYes Then
Options.HangulHanjaFastConversion = True
Else
Options.HangulHanjaFastConversion = 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.