LanguageSpecific Property

Applies To

Dictionary object.

Description

True if the custom dictionary is to be used only with text formatted for a specific language. Read/write Boolean.

See Also

Dictionaries collection object, LanguageID property.

Example

This example checks to see whether any custom dictionaries are language specific. If any of them are, the example removes them from the list of active custom dictionaries.

For each d in CustomDictionaries
    If d.LanguageSpecific = True Then d.Delete
Next d
This example adds a custom dictionary that will check only text that's formatted as German.

Set myD = CustomDictionaries.Add("MyGerman.dic")
myD.LanguageSpecific = True
myD.LanguageID = wdGerman