FlexSheet for WPF | ComponentOne
C1.WPF.FlexGrid Namespace / Aggregate Enumeration

In This Topic
    Aggregate Enumeration
    In This Topic
    Specifies the type of aggregate to calculate over a group of values.
    Syntax
    'Declaration
     
    
    Public Enum Aggregate 
       Inherits System.Enum
    public enum Aggregate : 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.
    CustomRaise the CustomAggregate event to calculate custom aggregates.
    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.FlexGrid.Aggregate

    See Also