TcxCustomCheckGroupProperties.Items Property
Provides access to the check boxes collection.
Declaration
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