HangulHanjaFastConversion Property

Microsoft Word Visual Basic

expression.HangulHanjaFastConversion

expression    Required. An expression that returns an Options object.

Remarks

For more information on using Microsoft Word with East Asian languages, see Word features for East Asian languages.

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