EnableHangulHanjaRecentOrdering Property

Microsoft Word Visual Basic

EnableHangulHanjaRecentOrdering Property

       

True if Microsoft Word displays the most recently used words at the top of the suggestions list during conversion between Hangul and Hanja. Read/write Boolean.

expression.EnableHangulHanjaRecentOrdering

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 display the most recently used words at the top of the suggestions list during conversion between Hangul and Hanja.

x = MsgBox("Display most recently used words " _
    & "at the top of the suggestions list?", vbYesNo)
If x = vbYes Then
    Options.EnableHangulHanjaRecentOrdering = True
Else
    Options.EnableHangulHanjaRecentOrdering = False
End If