C1.WPF.Grid Assembly / C1.WPF.Grid Namespace / GridAggregate Enumeration

GridAggregate Enumeration
Specifies the type of aggregate to calculate over a group of values.
Syntax
'Declaration
 
Public Enum GridAggregate 
   Inherits System.Enum
 
Members
MemberDescription
AverageReturns the average value of the non-null cells in the group.
CountReturns the count of non-null values in the group.
CustomUsed in custom functions inheriting GridAggregateFunction.
MaximumReturns the maximum value in the group.
MinimumReturns the minimum value in the group.
NoneNo aggregate.
RangeReturns the difference between the maximum and minimum values in the group.
StdReturns the sample standard deviation of the values in the group (uses the formula based on n-1).
StdPopReturns the population standard deviation of the values in the group (uses the formula based on n).
SumReturns the sum of all values in the group.
VarReturns the sample variance of the values in the group (uses the formula based on n-1).
VarPopReturns the population variance of the values in the group (uses the formula based on n).
Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         C1.WPF.Grid.GridAggregate

See Also