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

GridView.BeginSummaryUpdate() Method

In This Article

Prevents summaries from being calculated until the GridView.EndSummaryUpdate method is called.

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v24.2.dll

NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

#Declaration

public void BeginSummaryUpdate()

#Remarks

Whenever summary items are added to a Grid View or their settings are modified, the grid automatically recalculates summaries. To prevent summary calculation until all summary items are properly initialized, use the BeginSummaryUpdate and GridView.EndSummaryUpdate methods. Enclose you code with these methods. The BeginSummaryUpdate method locks summary calculation; the GridView.EndSummaryUpdate method unlocks summary calculation and forces the grid to recalculate the current summaries.

See Also