Gets the text of the misspelled word.

Syntax

public string Text { get; }
Public ReadOnly Property Text() As String

Examples

Enter an introductory text for your TXTextControl.MisspelledWord.Text Property example here, or leave blank, if there is nothing to say.

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)

Limitations

Read only.