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

TcxCheckGroupItems.Items Property

Provides indexed access to individual check boxes within the group.

#Declaration

Delphi
property Items[Index: Integer]: TcxCheckGroupItem read; write; default;

#Property Value

Type
TcxCheckGroupItem

#Remarks

Use the Items property to access check boxes by their indexes. The desired check box’s index should be passed as the Index parameter. The first item’s index is zero. The last item’s index is the Count property value decremented by one. Note that passing an invalid item index will raise an exception.

Note

If you need to set a particular check box’s state, use the control’s States property.

See Also