TcxCustomGridTableView.Items Property
Provides indexed access to all data items in the grid View.
Declaration
property Items[Index: Integer]: TcxCustomGridTableItem read; write;
Property Value
Type | Description |
---|---|
TcxCustomGridTableItem | A data item in the current View. You need to cast the returned object to the corresponding terminal TcxCustomGridTableItem class descendant to access all public API members. Tip You can call the returned object’s ClassType function to identify the actual data item type. |
Remarks
You can use the Items
property to access individual data items in the grid View. The ItemCount property allows you to identify the number of data items accessible through the Items
property.
Tip
All terminal TcxCustomGridTableView class descendants implement grid View-specific counterparts of the Items
property that expose data items as objects of corresponding terminal TcxCustomGridTableItem descendant types.
See Also