SpellCheckerBase.AfterCheckWord Event
In This Article
Occurs after a word is checked.
Namespace: DevExpress.XtraSpellChecker
Assembly: DevExpress.SpellChecker.v24.2.Core.dll
NuGet Package: DevExpress.SpellChecker.Core
#Declaration
public event AfterCheckWordEventHandler AfterCheckWord
#Event Data
The AfterCheckWord event's data class is AfterCheckWordEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Changed |
Gets the word which replaced the former one after the spelling check is performed. |
Edit |
Gets the control being checked. |
Operation | Gets the type of operation performed with the word in a spell check. |
Original |
Gets the word before the spell check is performed. |
Start |
Gets the position of a checked word in a text. |
#Remarks
The AfterCheckWord fires for each word in a text after it is checked with a spellchecker engine. If a spelling error is found, an error object with suggestions is already created.
This event allows a developer to track the end-user activity.
See Also