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