Hyphenation.UnregisterDictionary

Hyphenation UnregisterDictionary method. Unregisters a hyphenation dictionary for the specified language.

Hyphenation.UnregisterDictionary method

Unregisters a hyphenation dictionary for the specified language.

This is different from registering Null dictionary. Unregistering a dictionary enables callback for the specified language.

public void UnregisterDictionary(string language)
ParameterTypeDescription
languageStringA language name, e.g. “en-US”. See .NET documentation for “culture name” and RFC 4646 for details.

Examples

Shows how to unregister hyphenation dictionary.

Wordize.Settings.Hyphenation.UnregisterDictionary("en-us");

See Also