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.OnCheckControlInContainer Event

In This Article

Enables you to prohibit the contents of individual child controls from being spell checked in a container or optionally cancel the spell check.

#Declaration

Delphi
property OnCheckControlInContainer: TdxSpellCheckerCheckControlInContainerEvent read; write;

#Remarks

A call to the CheckContainer method initiates checking of child control contents in a container passed as a method parameter. The OnCheckControlInContainer event is fired for each child control that is eligible for checking (refer to the method’s description to learn more).

Sender specifies the spell checker control.

AControl specifies the control whose content is about to be checked.

AAllow specifies whether checking is allowed. Pass False as AAllow to prohibit the AControl from being checked.

AContinue specifies whether checking continues, proceeding to the next eligible for checking child control. Pass False as AContinue to cancel the spell check after AControl has been checked.

If the spell check successfully completes, the Spelling Complete Dialog is shown.

See Also