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

CustomSummaryEventArgs.TotalValueReady Property

Gets or sets whether the Calculation stage of the custom summary calculation process should be skipped.

Namespace: DevExpress.Maui.DataGrid

Assembly: DevExpress.Maui.DataGrid.dll

NuGet Package: DevExpress.Maui.DataGrid

#Declaration

C#
public bool TotalValueReady { get; set; }

#Property Value

Type Description
Boolean

true if the Calculation stage of the custom summary calculation process should be skipped; otherwise, false.

#Remarks

The process of custom summary calculation consists of three stages:

The TotalValueReady property allows you to interrupt the process of summary calculation during the Start stage. You cannot interrupt the process in other stages. This can be useful if you need to calculate a custom summary during the Start or Finalization stage while skipping the time-consuming Calculation stage.

If the TotalValueReady property is set to true, the Calculation stage is skipped and the Finalization stage starts immediately.

See Also