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

TcxCustomCheckGroupProperties.Items Property

Provides access to the check boxes collection.

#Declaration

Delphi
property Items: TcxCheckGroupItems read; write;

#Property Value

Type
TcxCheckGroupItems

#Remarks

The Items property represents a collection that holds elements representing individual check boxes displayed by the control. This collection is empty initially. Thus, you should add items to that collection to display check boxes within the control.

The property provides access to the TcxCheckGroupItems object which is a TOwnedCollection descendant and thus gives you all common members for collection management. Individual items can be accessed using that object’s Items property.

If you need to change check states for individual items, use the control’s States property.

See Also