Initializes a new instance of the User
public UserDictionary();
Public Sub New()
public UserDictionary(string userDictionaryPath);
Public Sub New(userDictionaryPath As String)
public UserDictionary(string[] dictionaryLines, System.Globalization.CultureInfo language);
Public Sub New(dictionaryLines As String(), language As System.Globalization.CultureInfo)
Parameter | Description |
---|---|
user |
Specifies the path of the user dictionary file. Using the dictionary name without any file path, the corresponding dictionary file in the default dictionary folder is used. The name of the specified user dictionary file must end with ".txd". If the file does not exist, or if it is not valid, an Argument |
dictionary |
The string array that represents the content of a user dictionary file. Each string of the array IS considered as a line of the dictionary file. |
language | Specifies the language of the dictionary. |