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

SpellCheckerBase.Check(ISpellCheckTextController) Method

Checks the spelling of the text available through the controller interface.

Namespace: DevExpress.XtraSpellChecker

Assembly: DevExpress.SpellChecker.v18.2.Core.dll

Declaration

public virtual string Check(
    ISpellCheckTextController controller
)

Parameters

Name Type Description
controller DevExpress.XtraSpellChecker.Parser.ISpellCheckTextController

An object implementing the DevExpress.XtraSpellChecker.Parser.ISpellCheckTextController interface.

Returns

Type Description
String

A String object, containing the text of the text controller, processed by a spell-checker engine.

Remarks

The text provided by an object that implements the ISpellCheckTextController interface is processed by a spell-checker engine in a non-interactive manner. Thus, using this method you have to handle all spell-checker events yourself.

See Also