ActiveHyphenationDictionary Property

Applies To

Language object.

Description

Returns a Dictionary object that represents the active hyphenation dictionary for the specified language. Read-only.

Remarks

If there's no hyphenation dictionary installed for the specified language, this property returns Nothing.

See Also

ActiveGrammarDictionary property, ActiveSpellingDictionary property, ActiveThesaurusDictionary property, Languages property.

Example

This example displays the full path and file name of the active hyphenation dictionary.

myLang = Selection.LanguageID
Set myHyph = Languages(myLang).ActiveHyphenationDictionary
MsgBox myHyph.Path & Application.PathSeparator & myHyph.Name