ISpellChecker.AfterCheckWord Event
Occurs after a word is checked.
Namespace: DevExpress.XtraSpellChecker
Assembly: DevExpress.Data.v24.1.dll
NuGet Package: DevExpress.Data
Declaration
Event Data
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. |
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 has already been created.
This event allows a developer to track the end-user activity.
See Also