Skip to main content

VirtualServerModeTotalSummaryEventArgs.NotifySummaryReady(IDictionary<ServerModeSummaryDescriptor, Object>) Method

Allows you to update the bound grid control with intermediate summary values.

Namespace: DevExpress.Data

Assembly: DevExpress.Data.v23.2.dll

NuGet Package: DevExpress.Data

Declaration

[Browsable(false)]
public void NotifySummaryReady(
    IDictionary<ServerModeSummaryDescriptor, object> intermediateSummary
)

Parameters

Name Type Description
intermediateSummary IDictionary<DevExpress.Data.ServerModeSummaryDescriptor, Object>

A dictionary that contains intermediate summary values.

Remarks

The Task you create in your VirtualServerModeSource.TotalSummary event handler must return final values for all requested summaries, including those whose intermediate values are supplied with the VirtualServerModeTotalSummaryEventArgs.NotifyIntermediateSummaryReady method.

See Also