ActiveSpellingDictionary Property
Applies To
Language object.
Description
Returns a Dictionary object that represents the active spelling dictionary for the specified language. Read-only.
Remarks
If there's no spelling dictionary installed for the specified language, this property returns Nothing.
See Also
ActiveCustomDictionary property, ActiveGrammarDictionary property, ActiveHyphenationDictionary property, ActiveThesaurusDictionary property, Languages property, SpellingDictionaryType property.
Example
This example returns the full path and file name of the active spelling dictionary.
myLang = Selection.LanguageID
Set mySpell = Languages(myLang).ActiveSpellingDictionary
MsgBox mySpell.Path & Application.PathSeparator & mySpell.Name