Limitations
Read only.
Gets the text of the misspelled word.
public string Text { get; }
Enter an introductory text for your TXText
TXTextControl.MisspelledWord myMisspelledWord = new TXTextControl.MisspelledWord(1, 4);
//...
string myMisspelledWordText = myMisspelledWord.Text;
//...
System.Windows.Forms.MessageBox.Show("The misspelled word is: " + myMisspelledWordText);
//...
Read only.