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

TcxPivotGridCrossCell.Records Property

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

#Declaration

Delphi
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