requestDictionary method

requestDictionary(language)

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 usingHyphenation.registerDictionary() methods.

If dictionary is unavailable for the specified language implementation can opt out of further calls for the same language usingHyphenation.registerDictionary() with null value.

requestDictionary(language: string)
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