[]
Gets whether the C1SpellChecker should highlight spelling mistakes as the user types on a given TextBoxBase.
public bool GetActiveSpellChecking(TextBoxBase textBox)
Type | Name | Description |
---|---|---|
TextBoxBase | textBox | TextBoxBase that will be monitored for spelling mistakes. |
Type | Description |
---|---|
bool | True if spell-checking is enabled for the given control, false otherwise. |
Gets whether the C1SpellChecker should highlight spelling mistakes as the user types on a given ISpellCheckableRichEditor.
public bool GetActiveSpellChecking(ISpellCheckableRichEditor editor)
Type | Name | Description |
---|---|---|
ISpellCheckableRichEditor | editor | ISpellCheckableRichEditor that will be monitored for spelling mistakes. |
Type | Description |
---|---|
bool | True if spell-checking is enabled for the given control, false otherwise. |
The C1SpellChecker provides as-you-type spell-checking to controls based on the TextBoxBase.
To spell-check other editors, you must write a wrapper class that implements the ISpellCheckableRichEditor interface. This class provides the necessary connection between the C1SpellChecker and the editor.
Gets whether the C1SpellChecker should highlight spelling mistakes as the user types on a given Control.
public bool GetActiveSpellChecking(Control control)
Type | Name | Description |
---|---|---|
Control | control | Control that is monitored for spelling mistakes. |
Type | Description |
---|---|
bool | True if spell-checking is enabled for the given control, false otherwise. |