New to Telerik UI for WinFormsStart a free 30-day trial

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.SpellChecker.dll

Syntax:

C#
public interface IControlSpellChecker : IDisposable

Derived Classes: ControlSpellCheckerBaseTextBoxSpellChecker

Inherited Members IDisposable.Dispose()

Properties

Gets or sets the control that is spell checked

C#
Control CurrentControl { get; set; }
Property Value:

The current control.

Gets or sets the words ignored once by the spell checker

C#
IDictionary<int, string> IgnoredOnceWords { get; set; }

Gets or sets the words ignored by the spell checker

C#
IIgnoredWordDictionary IgnoredWords { get; set; }
Property Value:

The ignored words.

Gets the spell checker.

C#
ISpellChecker SpellChecker { get; }
Property Value:

The spell checker.

Methods

Changes the current word.

C#
void ChangeCurrentWord(string suggestion)
Parameters:suggestionstring

The suggestion.

Moves to next spell check error.

C#
IWordInfo MoveToNextError()
Returns:

IWordInfo

Resets the fields.

C#
void ResetFields()

Sets the content from string.

C#
void SetContentFromDocument(string document)
Parameters:documentstring

The document.