SummaryItemType Enum
In This Article
Lists values that specify the aggregate function types.
Namespace: DevExpress.Data
Assembly: DevExpress.Data.v14.2.dll
#Declaration
#Members
Name | Description |
---|---|
Sum | The sum of all values in a column. |
Min | The minimum value in a column. |
Max | The maximum value in a column. |
Count | Calculates the number of records. |
Average | The average value of a column. |
Custom | Specifies whether calculations should be performed manually using a specially designed event. |
None | Disables summary value calculation. |
#Passed To
You can pass SummaryItemType values to the SummaryItemBase.SummaryType property.
#Remarks
The values listed by this enumeration are used to set the summary type (e.g. SummaryItemBase.SummaryType).
See Also