windowsforms-devexpress-dot-xtratreelist-d89b32b0.md
Specifies summary type to calculate against a group of column cells.
Namespace : DevExpress.XtraTreeList
Assembly : DevExpress.XtraTreeList.v25.2.dll
NuGet Packages : DevExpress.Win.Navigation, DevExpress.Win.TreeList
public enum SummaryItemType
Public Enum SummaryItemType
| Name | Description |
|---|---|
Sum |
Calculates the sum of field values within a group of column cells.
|
| Min |
Retrieves the minimum value within a group of column cells.
|
| Max |
Retrieves the maximum value within a group of column cells.
|
| Count |
Calculates the number of nodes within a group of column cells.
|
| Average |
Calculates the average field value within a group of column cells.
|
| Custom |
Allows a user to define a custom summary value by handling the TreeList.GetCustomSummaryValue event.
|
| None |
Summary is not calculated.
|
The following properties accept/return SummaryItemType values:
See Also