Gets the starting position of a misspelled word. It is a one-based index of the word's first character.

Syntax

public int Start { get; }
Public ReadOnly Property Start As Integer

Examples

This example describes how to easily use the 'TXTextControl.MisspelledWord.Start' property. Here, it is stored in a variable of the type 'int'.

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
'...

Limitations

Read only.