Setting this property to True causes the currently checked word to be ignored.
Namespace:
C1.Win.C1SpellAssembly: C1.Win.C1Spell.2 (in C1.Win.C1Spell.2.dll)
Syntax
| C# |
|---|
[BrowsableAttribute(false)] public bool IgnoreWord { set; } |
| Visual Basic (Declaration) |
|---|
<BrowsableAttribute(False)> _ Public WriteOnly Property IgnoreWord As Boolean |
Examples
The following example uses a button control to ignore the currently checked word:
- Visual Basic
Private Sub btnIgnore_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnIgnore.Click
C1Spell1.IgnoreWord = True
Close()
End Sub |
- C#
privatevoid btnIgnore_Click(object sender, EventArgs e) { c1Spell1.IgnoreWord = true; Close(); } |
For an example using the IgnoreWord property, see Step 2: Create a Customized Dialog Form.