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

PivotCellBaseEventArgs.ColumnCustomTotal Property

Gets the custom total to which the processed cell’s column corresponds.

Namespace: DevExpress.Xpf.PivotGrid

Assembly: DevExpress.Xpf.PivotGrid.v24.2.dll

NuGet Package: DevExpress.Wpf.PivotGrid

#Declaration

public PivotGridCustomTotal ColumnCustomTotal { get; }

#Property Value

Type Description
PivotGridCustomTotal

A PivotGridCustomTotal object that represents the custom total to which the processed cell’s column corresponds.

#Remarks

If the processed cell does not reside in a custom total column, the ColumnCustomTotal property returns null.

If the cell resides in a custom total row, use the PivotCellBaseEventArgs.RowCustomTotal property, to obtain the corresponding custom total.

You can obtain whether the processed cell resides in a custom total column or row via the PivotCellBaseEventArgs.ColumnValueType and PivotCellBaseEventArgs.RowValueType properties, respectively.

See Also