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.

Syntax

public bool IsIgnored { get; set; }
Public Property IsIgnored() As Boolean

Examples

The following example describes the'TXTextControl.MisspelledWord.IsIgnored' property. Here, it is set to 'true'.

TXTextControl.MisspelledWord myMisspelledWord = new TXTextControl.MisspelledWord(1, 4);
//...
myMisspelledWord.IsIgnored = true;
//...
Dim myMisspelledWord As TXTextControl.MisspelledWord = New TXTextControl.MisspelledWord(1, 4)
'...
myMisspelledWord.IsIgnored = True
'...