Checks text for spelling errors and fills the IncorrectWordCollection at TXSpell.IncorrectWords with all incorrect words. The first implementation uses selected dictionaries of the DictionaryCollection at TXSpell.Dictionaries. The second 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 whose Dictionary.IsSpellCheckingEnabled properties are set to true.

Check(String)

public void Check(string text);
Public Sub Check(text As String)

Check(String, System.Globalization.CultureInfo)

public void Check(string text, System.Globalization.CultureInfo language);
Public Sub Check(text As String, language As System.Globalization.CultureInfo)

Parameters

Parameter Description
text Specifies the text to spell check.
language The language that is used to spell check the specified text.

Remarks

This method throws an exception, if called while the SpellCheckDialog is open.