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