Sets or returns if the Help button is visible in the bad-word dialog box.
Namespace:
C1.Win.C1SpellAssembly: C1.Win.C1Spell.2 (in C1.Win.C1Spell.2.dll)
Syntax
C# |
---|
[DefaultValueAttribute(false)] [BrowsableAttribute(true)] public bool HelpBtnVisible { get; set; } |
Visual Basic (Declaration) |
---|
<DefaultValueAttribute(False)> _ <BrowsableAttribute(True)> _ Public Property HelpBtnVisible As Boolean |
Remarks
The default value is False.
Examples
To make the Help button visible in the bad-word dialog box, use the following code:
- Visual Basic

Private Sub btnSpellCheck_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSpellCheck.Click C1Spell1.CheckControl(TextBox1) Me.C1Spell1.HelpBtnVisible = True End Sub |
- C#

privatevoid btnSpellCheck_Click(object sender, EventArgs e) { c1Spell1.CheckControl(textBox1); this.c1Spell1.HelpBtnVisible = true; } |