SummaryType Enum
Lists values that specify the aggregate function types.
Namespace: DevExpress.XamarinForms.DataGrid
Assembly: DevExpress.XamarinForms.Grid.dll
Declaration
public enum SummaryType
Members
Name | Description |
---|---|
None | Disables summary value calculation. |
Sum | The sum of all values in a column. |
Min | The minimum value in a column. |
Max | The maximum value in a column. |
Count | The record count. |
Average | The average value of a column. |
Custom | Specifies whether data summaries should be calculated according to a custom rule specified in the DataGridView.CalculateCustomSummary event handler. |
Related API Members
The following properties accept/return SummaryType values:
Remarks
Assign a SummaryType enumeration's value to the GridColumnSummary.Type property to specify the aggregate function to calculate summary values.
See Also
Feedback