Skip to main content

RichEditControl.SpellChecker Property

Gets or sets a spell checker component used with the RichEdit control.

Namespace: DevExpress.Xpf.RichEdit

Assembly: DevExpress.Xpf.RichEdit.v23.2.dll

NuGet Package: DevExpress.Wpf.RichEdit

Declaration

public ISpellChecker SpellChecker { get; set; }

Property Value

Type Description
ISpellChecker

An object providing the ISpellChecker interface.

Remarks

The SpellChecker property can be used to specify a spell checker at runtime. Instantiate the SpellChecker object, load the dictionaries, specify the SpellChecker.OptionsSpelling and SpellChecker.SpellCheckMode. Finally, assign the SpellChecker instance to the SpellChecker property.

Tip

We suggest using the behavior mechanism to specify a spell checker and dictionaries in XAML, as described in the Lesson 3 - Configure Spelling Check in XAML document.

See Also