Skip to main content

CustomSummaryEventArgs.GetGroupSummary(Int32, Object) Method

Returns the value of the specified group summary for the specified group row.

Namespace: DevExpress.Data

Assembly: DevExpress.Data.v23.2.dll

NuGet Package: DevExpress.Data

Declaration

public object GetGroupSummary(
    int groupRowHandle,
    object summaryItem
)

Parameters

Name Type Description
groupRowHandle Int32

An integer that specifies a group row’s handle.

summaryItem Object

An object representing the group summary item. In the GridControl, it’s represented by the GridGroupSummaryItem class.

Returns

Type Description
Object

The specified group summary’s value.

Remarks

This method allows you to return group summary values for the summaries that have already been calculated. You can call this method when the CustomSummaryEventArgs.SummaryProcess property returns CustomSummaryProcess.Finalize.

Group summaries are calculated in the order in which they have been specified. For instance, in the GridControl, group summaries are calculated in the order specified by the position of the corresponding items in the GridView.GroupSummary collection. If the CustomSummaryCalculate event is currently firing, say, for a third summary item, the GetGroupSummary method can be called to retrieve summary values for the first and second summary items, as they have already been calculated.

See Also