Skip to main content
A newer version of this page is available. .

ISpellChecker Members

The base interface for a spell checker.

Properties

Name Description
Culture Gets or sets the culture-specific settings of the spell checker.
IsChecking Gets whether the spell checker is checking the content.
SpellCheckMode Gets or sets the spell check mode.

Methods

Name Description
AddToDictionary(String, CultureInfo) Add a word to a custom dictionary.
AddToDictionary(String) Add a word to a custom dictionary.
CanAddToDictionary() Determines whether a word can be added to a custom dictionary.
CanAddToDictionary(CultureInfo) Determines whether words of the specified language can be added to the dictionary.
Check(Object, ISpellCheckTextController, Position, Position) Checks the spelling of the text available through the controller interface in the specified range and returns on the first error that occurrs.
Check(Object) Checks the specified control for spelling mistakes.
CheckText(Object, String, Int32, CultureInfo) Checks the specified text in the specified control with the specified culture.
GetOptions(Object) Provides access to spell checking options for a specified control.
GetSuggestions(String, CultureInfo) Constructs an ordered list of suggestions for a given word.
Ignore(Object, String, Position, Position) Disregards a word in a text.
IgnoreAll(Object, String) Skips the specified word throughout the entire content of the specified control.
RegisterIgnoreList(Object, IIgnoreList) Registers a list of words as the words to ignore while checking.
UnregisterIgnoreList(Object) Unregisters the previously registered list of words which should be skipped while checking.

Events

Name Description
AfterCheckWord Occurs after a word is checked.
CultureChanged Occurs when the current culture setting of a spell checker is changed.
CustomDictionaryChanged Occurs when a custom dictionary is modified by an end-user.
SpellCheckModeChanged Occurs when the SpellCheckMode is changed.
WordAdded Occurs after a word is added to a custom dictionary.
See Also