Options.EnableHangulHanjaRecentOrdering Property (Word)
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.
Syntax
expression .EnableHangulHanjaRecentOrdering
expression An expression that returns an Options object.
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