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
get isEnabled(): boolean
set isEnabled(value: boolean)
Property Value
Type | Description |
---|---|
boolean |
|
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