BuiltinDictionary Property

BuiltinDictionary Property
This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release.

Returns a Dictionary object that represents the main dictionary Microsoft Word uses during conversion between Hangul and Hanja.

expression.BuiltinDictionary

expression   Required. An expression that returns a HangulHanjaConversionDictionaries object.

Remarks

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

Example

This example displays the full path for the main Hangul-Hanja conversion dictionary.

  With HangulHanjaDictionaries.BuiltinDictionary
    Msgbox .Path & Application.PathSeparator & .Name
End With