Skip to main content

TdxCustomCheckGroupBox Class

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

Declaration

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