TcxPivotGridCrossCell.Records Property
In This Article
Provides access to the record indexes associated with the current cross cell.
#Declaration
Delphi
property Records: TcxPivotGridRecords read;
#Property Value
Type |
---|
Tcx |
#Remarks
The indexes of the records in the subset of records associated with the current cross cell (also called “drilldown data records”) can be accessed via the Records zero-based indexed collection. Using these record indexes you can get direct access to the data in the underlying data source using the DataController property. For instance, to access the value of a particular field in the drilldown data source, pass the corresponding record index and the field’s index as the parameters to the DataController.Values property.
Note
You can use the pivot grid’s View
See Also