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