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

SpellCheckerBase.GetCommandsByError(SpellCheckErrorBase) Method

Creates a list of commands, available to the end-user, which depend on the type of misspelling.

Namespace: DevExpress.XtraSpellChecker

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

Declaration

public virtual List<SpellCheckerCommand> GetCommandsByError(
    SpellCheckErrorBase error
)

Parameters

Name Type Description
error DevExpress.XtraSpellChecker.Rules.SpellCheckErrorBase

A DevExpress.XtraSpellChecker.Rules.SpellCheckErrorBase object, representing a situation when a misspelled word is found.

Returns

Type Description
List<SpellCheckerCommand>

A generic list of SpellCheckerCommand objects.

Remarks

The GetCommandsByError method is used to construct menu commands specific to different spelling check failure situations, such as a misspelled word with suggestions available, the same with no suggestions, repeated words and so on.

See Also