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

PivotCustomDrawCellBaseEventArgs.SummaryValue Property

Gets values of the predefined summaries calculated for the current cell.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.XtraPivotGrid.v19.1.dll

Declaration

public PivotSummaryValue SummaryValue { get; }

Property Value

Type Description
PivotSummaryValue

A PivotSummaryValue object that contains values of the predefined summaries calculated for the current cell.

Remarks

Use properties exposed by the returned object to obtain values of the predefined summaries calculated for the current cell, against the corresponding data field.

For instance, the PivotSummaryValue.Summary property returns the sum of values in the data field.

Note

If you try to access the SummaryValue property while an asynchronous operation is being performed, an exception will be thrown. To determine whether the operation is in progress, use the pivot grid’s IThreadSafeAccessible.IsAsyncInProgress property. For more information, see Asynchronous Mode.

See Also