Determines suggestions for a specific incorrect word by using selected dictionaries of the DictionaryCollection at TXSpell.Dictionaries and fills the results into the SuggestionCollection at TXSpell.Suggestions. If no maximum number of suggestions is set, all created suggestions are added into TXSpell.Suggestions. Otherwise, only the first maximum number of suggestions are determined. The second and fourth implementation uses selected dictionaries of the TXSpell.Dictionaries DictionaryCollection and the default dictionary folder where the dictionary's language equals to the defined language parameter. Only those dictionaries are used where the Dictionary.IsGetSuggestionsEnabled property is set to true.

CreateSuggestions(String)

public void CreateSuggestions(string incorrectWord);

CreateSuggestions(String, System.Globalization.CultureInfo)

public void CreateSuggestions(string incorrectWord, System.Globalization.CultureInfo language);

CreateSuggestions(String, Int)

public void CreateSuggestions(string incorrectWord, int max);

CreateSuggestions(String, Int, System.Globalization.CultureInfo)

public void CreateSuggestions(string incorrectWord, int max, System.Globalization.CultureInfo language);

Parameters

Parameter Description
incorrectWord Specifies the incorrect word that has to be determined for suggestions.
language The language that is used to create suggestions for the specified incorrect word.
max Specifies the maximum number of suggestions that has to be determined.