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

PivotCellBaseEventArgs.ColumnCustomTotal Property

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

Namespace: DevExpress.Xpf.PivotGrid

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

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.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ColumnCustomTotal property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also