Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

SpellCheckerOptions Class

Contains spell check settings.

#Declaration

TypeScript
export class SpellCheckerOptions

#Remarks

The example below demonstrates how to disable spell check:

richEdit.spellCheckerOptions.isEnabled = false;
See Also

#Properties

#isEnabled Property

Specifies whether to enable spell check.

#Declaration

TypeScript
get isEnabled(): boolean
set isEnabled(value: boolean)

#Property Value

Type Description
boolean

true to enable spell check; false to disable spell check.

#Remarks

Use the client-side spellCheck property or the server-side SpellCheck(Action<SpellCheckBuilder>) method to configure spell check settings. The isEnabled option allows you to enable and disable spell check at runtime.

The example below demonstrates how to disable spell check:

richEdit.spellCheckerOptions.isEnabled = false;
See Also