Limitations
Read only.
Gets the text of the misspelled word.
public string Text { get; }
Public ReadOnly Property Text() As String
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);
//...
Dim myMisspelledWord As TXTextControl.MisspelledWord = New TXTextControl.MisspelledWord(1, 4)
'...
Dim myMisspelledWordText As String = myMisspelledWord.Text
'...
System.Windows.Forms.MessageBox.Show("The misspelled word is: " & myMisspelledWordText)
Read only.