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; }Public Property IsDuplicate() As BooleanThe following example describes the'TXText
TXTextControl.MisspelledWord myMisspelledWord = new TXTextControl.MisspelledWord(1, 4);
//....
myMisspelledWord.IsDuplicate = true;
//...Dim myMisspelledWord As TXTextControl.MisspelledWord = New TXTextControl.MisspelledWord(1, 4)
'...
myMisspelledWord.IsDuplicate = True
'...