Skip to main content

SpellCheckerOptions Class

Contains spell check settings.

Declaration

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

isEnabled: 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