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

TcxCustomCheckGroup Class

Implements the basic functionality of check group controls.

#Declaration

Delphi
TcxCustomCheckGroup = class(
    TcxCustomButtonGroup
)

#Remarks

The TcxCustomCheckGroup class serves as the base for the TcxCheckGroup and TcxDBCheckGroup objects. It inherits the button and border painting functionality (when using an editor as a standalone) from the TcxCustomButtonGroup class. Additionally, it overrides the Properties property to provide settings specific to check box groups. It also implements the States property that enables you to specify check states for individual check boxes within the control.

Note that the check group’s edit value is updated automatically when changing the individual combo boxes’ check states. The edit value’s format is specified by the Properties.EditValueFormat property. You can also override default conversion logic by handling the Properties.OnStatesToEditValue and Properties.OnEditValueToStates events.

See Also