Gets or sets a value which marks the misspelled word as ignored. An ignored misspelled word remains in the collection of misspelled words, but it is not underlined in the text with a red zigzag line.
Introduced: X8.
public bool IsIgnored { get; set; }
Public Property IsIgnored() As Boolean
The following example describes the'TXText
TXTextControl.MisspelledWord myMisspelledWord = new TXTextControl.MisspelledWord(1, 4);
//...
myMisspelledWord.IsIgnored = true;
//...
Dim myMisspelledWord As TXTextControl.MisspelledWord = New TXTextControl.MisspelledWord(1, 4)
'...
myMisspelledWord.IsIgnored = True
'...