public interface IHyphenationCallback
| Modifier and Type | Method and Description |
|---|---|
void |
requestDictionary(java.lang.String language)
Notifies application that hyphenation dictionary for the specified language wasn't found and may need to be registered.
|
void requestDictionary(java.lang.String language)
throws java.lang.Exception
Implementation should find a dictionary and register it using M:Aspose.Words.Hyphenation.RegisterDictionary(System.String,System.IO.Stream) methods.
If dictionary is unavailable for the specified language implementation can opt out of further calls for the same language using
Hyphenation.registerDictionary(java.lang.String, java.lang.String) with null value.language - A language name, e.g. "en-US". See .NET documentation for "culture name" and RFC 4646 for details.java.lang.Exception