Gets or sets a value which marks the misspelled word as duplicate. A duplicate word is not misspelled, but it has the same text as the word in front of it.
Introduced: X8.
public bool IsDuplicate { get; set; }
The following example describes the'TXText
TXTextControl.MisspelledWord myMisspelledWord = new TXTextControl.MisspelledWord(1, 4);
//....
myMisspelledWord.IsDuplicate = true;
//...