RichEditControl.SpellingErrorLimitExceeded Event
In This Article
Raises when the number of found misspelled words exceeds the error limit.
Namespace: DevExpress.Xpf.RichEdit
Assembly: DevExpress.Xpf.RichEdit.v24.2.dll
NuGet Package: DevExpress.Wpf.RichEdit
#Declaration
public event SpellingErrorLimitExceededEventHandler SpellingErrorLimitExceeded
#Event Data
The SpellingErrorLimitExceeded event's data class is SpellingErrorLimitExceededEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Clear |
Gets or sets whether to clear the list of found errors. |
Handled |
Gets or sets whether the Spelling |
#Remarks
Use the SpellCheckerOptions.UpperErrorLimit property to set the number of errors when the SpellingErrorLimitExceeded raises and the spell check stops.
You can handle the SpellingErrorLimitExceeded event to achieve the following:
Objective | Action |
---|---|
To clear the list of found errors and remove the underline highlighting. | Set the e. |
To stop the spell check and highlight the errors. The number of errors is determined by the Spell |
Set the e. |
See Also