Xamarin.Android | ComponentOne
C1.Android.Grid Assembly / C1.Android.Grid Namespace / GridAggregate Enumeration


In This Topic
    GridAggregate Enumeration
    In This Topic
    Specifies the type of aggregate to calculate over a group of values.
    Syntax
    'Declaration
     
    
    Public Enum GridAggregate 
       Inherits System.Enum
    'Usage
     
    
    Dim instance As GridAggregate
    public enum GridAggregate : System.Enum 
    Members
    MemberDescription
    Average Returns the average value of the non-null cells in the group.
    Count Returns the count of non-null values in the group.
    CustomRaise the CustomAggregate event to calculate custom aggregates.
    Maximum Returns the maximum value in the group.
    Minimum Returns the minimum value in the group.
    None No aggregate.
    Range Returns the difference between the maximum and minimum values in the group.
    Std Returns the sample standard deviation of the values in the group (uses the formula based on n-1).
    StdPop Returns the population standard deviation of the values in the group (uses the formula based on n).
    Sum Returns the sum of all values in the group.
    Var Returns the sample variance of the values in the group (uses the formula based on n-1).
    VarPop Returns the population variance of the values in the group (uses the formula based on n).
    Inheritance Hierarchy

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

    See Also