Limitations
Read only.
Gets the starting position of a misspelled word. It is a one-based index of the word's first character.
public int Start { get; }Public ReadOnly Property Start As IntegerThis example describes how to easily use the 'TXText
TXTextControl.MisspelledWord myMisspelledWord = new TXTextControl.MisspelledWord(1, 4);
//...
int MyMisspelledWordStart = myMisspelledWord.Start;
//...Dim myMisspelledWord As TXTextControl.MisspelledWord = New TXTextControl.MisspelledWord(1, 4)
'...
Dim MyMisspelledWordStart As Integer = myMisspelledWord.Start
'...Read only.