IHyphenationCallback.RequestDictionary

IHyphenationCallback RequestDictionary method. Notifies application that hyphenation dictionary for the specified language wasnt found and may need to be registered.

IHyphenationCallback.RequestDictionary method

Notifies application that hyphenation dictionary for the specified language wasn’t found and may need to be registered.

Implementation should find a dictionary and register it using RegisterDictionary methods.

If dictionary is unavailable for the specified language implementation can opt out of further calls for the same language using RegisterDictionary with null value.

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

Remarks

Exceptions thrown by this method will abort execution of page layout process.

See Also