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

PivotCellBaseEventArgs.RowCustomTotal Property

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

Namespace: DevExpress.Xpf.PivotGrid

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

Declaration

public PivotGridCustomTotal RowCustomTotal { get; }

Property Value

Type Description
PivotGridCustomTotal

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

Remarks

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

If the cell resides in a custom total column, use the PivotCellBaseEventArgs.ColumnCustomTotal 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 RowCustomTotal 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