Limitations
Read only.
Gets the number of this misspelled word. All misspelled words are counted from the beginning to the end of a document. The first word has the number 1.
public int Number { get; }
The following example shows an easy use of the 'TXText
TXTextControl.MisspelledWord myMisspelledWord = new TXTextControl.MisspelledWord(1, 4);
int myMisspelledWordNumber = myMisspelledWord.Number;
//...
if (myMisspelledWordNumber == 1) {
System.Windows.Forms.MessageBox.Show(" This misspelled word is also the first erroneous word of the document!");
}
else {
System.Windows.Forms.MessageBox.Show("This misspelled word is the erroneous word no.: " + myMisspelledWordNumber.ToString() + " of this document!");
}
//...
Read only.