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

See also

Options Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.