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

TdxCustomSpellChecker.OnCheckWord Event

In This Article

Allows you to manually determine if a word is misspelled.

#Declaration

Delphi
property OnCheckWord: TdxSpellCheckerCheckWordEvent read; write;

#Remarks

Fires every time the spell checker processes a word. The current word is passed as the AWord parameter. AValid specifies whether the current word is misspelled. Set AValid to True, to inform the spell checker that AWord is correct. Otherwise, set AValid to False.

Sender specifies the spell checker that performs the spell check.

AHandled specifies whether the default behavior is required. Set AHandled to True, to prevent the default check of the current word.

See Also