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

TdxCustomCheckGroupBox Class

Serves as the base class for classes that implement checkable group box editors.

#Declaration

Delphi
TdxCustomCheckGroupBox = class(
    TcxCustomGroupBox
)

#Remarks

A checkable group box editor combines a group box with a check box (a TcxCheckBox or TcxDBCheckBox control) that switches the enabled state of the editor’s child controls. This functionality is a great time saver since you don’t need to implement the associated logic and manually iterate through the children.

You can turn off the default functionality and adjust other check box settings via the editor’s CheckBox property.

The TdxCustomCheckGroupBox class extends its ancestor class with the properties that are specific to checkable group box editors. The TdxCustomCheckGroupBox class implements all the functionality needed by its descendants, TdxCheckGroupBox and TdxDBCheckGroupBox, which mostly publish inherited properties and events.

See Also