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.

Syntax

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

Examples

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

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