Skip to main content
A newer version of this page is available. .

TcxPivotGridCrossCell.Records Property

Provides access to the record indexes associated with the current cross cell.

Declaration

property Records: TcxPivotGridRecords read;

Property Value

Type
TcxPivotGridRecords

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 ViewData property to access the displayed data.

See Also