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.CheckContainer(TWinControl,Boolean) Method

Checks spelling in text-editing controls placed onto the container.

#Declaration

Delphi
procedure CheckContainer(AContainer: TWinControl; ARecursive: Boolean);

#Parameters

Name Type
AContainer TWinControl
ARecursive Boolean

#Remarks

The CheckContainer method checks controls in tab order. The method doesn’t check the contents of the following controls:

  • Disabled controls;

  • DevExpress editors that either do not have input fields or are configured to let end-users select values rather than type them;

  • DevExpress editors whose Properties.EchoMode property is set to eemPassword.

ARecursive specifies whether the check is performed at all hierarchical levels. Set ARecursive to True, to check all child text-editing controls. Otherwise, checking will only be performed on the container’s immediate children.

Handle the OnCheckControlInContainer event to prohibit spell checking initiated by the CheckContainer method for specific controls in the container.

See Also