Initializes a new instance of the Open
public OpenOfficeDictionary(string dictionaryPath);
Public Sub New(dictionaryPath As String)
public OpenOfficeDictionary(string[] dictionaryLines, string[] affixLines, System.Globalization.CultureInfo language);
Public Sub New(dictionaryLines As String(), affixLines As String(), language As System.Globalization.CultureInfo)
Parameter | Description |
---|---|
dictionary |
Specifies the path for the Hunspell Open Source dictionary dict file. By specifying only the dictionary name without any file path, the corresponding dictionary file of the default dictionary folder is used. The name of the specified Hunspell Open Source dictionary file must end with ".dic" or ".aff". If the file does not exist, an Argument |
dictionary |
The string array that represents the content of a Hunspell Open Source dictionary file. Each string of this array is considered as a line of the dictionary file. |
affix |
The string array that represents the content of a Hunspell Open Source affix file. Each string of this array is considered as a line of the affix file. |
language | Specifies the language of the dictionary. |