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

RichEditControl.SpellChecker Property

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

Namespace: DevExpress.Xpf.RichEdit

Assembly: DevExpress.Xpf.RichEdit.v24.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 recommend that you use the behavior mechanism to specify a spell checker and dictionaries in XAML. Refer to the following article for more information: Configure Spelling Check in XAML

See Also