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; }
The following example describes the'TXText
TXTextControl.MisspelledWord myMisspelledWord = new TXTextControl.MisspelledWord(1, 4);
//...
myMisspelledWord.IsIgnored = true;
//...