ASP.NET Core MVC Controls | ComponentOne
C1.AspNetCore.Mvc Assembly / C1.Web.Mvc.Grid 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
    AvgReturns the average value of the numeric values in the group.
    CntReturns the count of non-null values in the group.
    CntAllReturns the count of all values in the group (including nulls).
    FirstReturns the first non-null value in the group.
    LastReturns the last non-null value in the group.
    MaxReturns the maximum value in the group.
    MinReturns the minimum value in the group.
    NoneNo aggregate.
    RngReturns the difference between the maximum and minimum numeric values in the group.
    StdReturns the sample standard deviation of the numeric 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 the numeric values in the group.
    VarReturns the sample variance of the numeric 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.Web.Mvc.Grid.Aggregate

    See Also