Back to Devexpress

SpellCheckerOptions Class

aspnetcore-js-devexpress-dot-richedit-9638d7a6.md

latest1.3 KB
Original Source

SpellCheckerOptions Class

Contains spell check settings.

Declaration

ts
export class SpellCheckerOptions

Remarks

The example below demonstrates how to disable spell check:

javascript
richEdit.spellCheckerOptions.isEnabled = false;

See Also

Spell Check

Properties

isEnabled Property

Specifies whether to enable spell check.

Declaration

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

Property Value

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

javascript
richEdit.spellCheckerOptions.isEnabled = false;

See Also

Spell Check