corelibraries-devexpress-dot-xtraspellchecker-dot-spellcheckerbase-729ee600.md
Occurs after a word is checked.
Namespace : DevExpress.XtraSpellChecker
Assembly : DevExpress.SpellChecker.v25.2.Core.dll
NuGet Package : DevExpress.SpellChecker.Core
public event AfterCheckWordEventHandler AfterCheckWord
Public Event AfterCheckWord As AfterCheckWordEventHandler
The AfterCheckWord event's data class is AfterCheckWordEventArgs. The following properties provide information specific to this event:
| Property | Description |
|---|---|
| ChangedWord | Gets the word which replaced the former one after the spelling check is performed. |
| EditControl | Gets the control being checked. |
| Operation | Gets the type of operation performed with the word in a spell check. |
| OriginalWord | Gets the word before the spell check is performed. |
| StartPosition | Gets the position of a checked word in a text. |
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