Gets the length of a misspelled word.

Syntax

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

Examples

This sample code describes the 'TXTextControl.MisspelledWord.Length' property by storing it in a variable of the type 'int'.

TXTextControl.MisspelledWord myMisspelledWord = new TXTextControl.MisspelledWord(1, 4);
//...
int myMispelledWordLength = myMisspelledWord.Length ;
//...
Dim myMisspelledWord As TXTextControl.MisspelledWord = New TXTextControl.MisspelledWord(1, 4)
'...
Dim myMispelledWordLength As Integer = myMisspelledWord.Length
'...

Limitations

Read only.