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

CustomSummaryEventArgs.TotalValue Property

Gets or sets the total summary value.

Namespace: DevExpress.Data

Assembly: DevExpress.Data.v19.2.dll

Declaration

public object TotalValue { get; set; }

Property Value

Type Description
Object

An object representing the total summary value.

Remarks

The TotalValue property represents the total summary value that accumulates the custom calculated value. Note that this property should be initialized before the summary calculation process starts. To identify the status of the custom summary calculation, use the CustomSummaryEventArgs.SummaryProcess property. When performing calculations, you need to refresh the TotalValue property for it to be updated with the new values.

You can also modify the TotalValue property’s value when finalizing the calculation. In this case, the CustomSummaryEventArgs.SummaryProcess property returns the CustomSummaryProcess.Finalize value.

The following code snippets (auto-collected from DevExpress Examples) contain references to the TotalValue property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also