Skip to main content

CustomSummaryEventArgs.SummaryProcess Property

Gets a value indicating the current calculation stage.

Namespace: DevExpress.Data

Assembly: DevExpress.Data.v14.2.dll

#Declaration

public CustomSummaryProcess SummaryProcess { get; }

#Property Value

Type Description
CustomSummaryProcess

A CustomSummaryProcess enumeration value, identifying the current calculation stage.

#Remarks

The process of custom summary calculation consists of three stages: Start, Calculation and Finalization. During the Start stage the calculation event fires once, with the SummaryProcess parameter set to 'Start'. During the Calculation stage the event is called multiple times - once for each record. Finally, during the last stage the event is called once, with the SummaryProcess parameter set to 'Finalize'.

See Also