Skip to main content

PivotSummaryDataRow.ColumnIndex Property

Gets the index of the pivot grid column where the cell represented by the summary row resides.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.PivotGrid.v23.2.Core.dll

NuGet Packages: DevExpress.PivotGrid.Core, DevExpress.Win.Navigation

Declaration

public int ColumnIndex { get; }

Property Value

Type Description
Int32

An integer value that specifies the index of the pivot grid column where the cell represented by the summary row resides.

Remarks

A summary data source row represents a pivot grid data cell. The ColumnIndex property returns the index of the pivot grid column where the cell resides. To obtain the index of the corresponding pivot grid row, use the PivotSummaryDataRow.RowIndex property. Both indexes can be obtained using the PivotSummaryDataRow.Location property.

Use the PivotSummaryDataRow.Index property, to obtain the index of the current row in the summary data source.

See Also