Skip to main content

IGroupInfo.Summaries Property

Gets the list of objects that contain information on group summaries calculated for the data group and displayed within the group row.

Namespace: DevExpress.Mobile.DataGrid

Assembly: DevExpress.Mobile.Grid.v18.2.dll

Declaration

IReadOnlyList<GridColumnSummary> Summaries { get; }

Property Value

Type Description
IReadOnlyList<GridColumnSummary>

The list of GridColumnSummary objects.

Remarks

Important

This documentation topic describes legacy technology. We no longer develop new functionality for the GridControl and suggest that you use the new DataGridView control instead.

In GridControl, group summaries are specified by the GridColumnSummary objects added to the GridControl.GroupSummaries collection. A group summary is calculated for each data group in the grid, and each group summary value is displayed within the corresponding group row. To obtain information on group summaries calculated for the specified group (for example, to get group summary values displayed within the group row), use the Summaries property. This property returns the GridControl.GroupSummaries collection read-only copy, whose elements specify group summaries calculated for a particular data group.

See Also