ActiveReports 18 .NET Edition
MESCIUS.ActiveReports Assembly / GrapeCity.ActiveReports.SectionReportModel Namespace / SummaryFunc Enumeration

In This Topic
    SummaryFunc Enumeration
    In This Topic
    Determines the summary calculation function performed on the  field value.
    Syntax
    'Declaration
     
    Public Enum SummaryFunc 
       Inherits System.Enum
    public enum SummaryFunc : System.Enum 
    Members
    MemberDescription
    AvgCalculates the average of all values within the specified summary region (group, page or report).
    CountCalculates the count of all values within the specified summary region (group, page or report).
    DAvgCalculates the average based on the distinct values of another field within the specified summary region (group, page or report).
    DCountCalculates the distinct count based on the distinct values of another field within the specified summary region (group, page or report).
    DStdDevCalculates the standard deviation based on the distinct values of another field within the specified summary region (group, page or report).
    DStdDevPCalculates the population standard deviation based on the distinct values of another field within the specified summary region (group, page or report).
    DSumCalculates the total based on the distinct values of another field within the specified summary region (group, page or report).
    DVarCalculates the variance based on the distinct values of another field within the specified summary region (group, page or report).
    DVarPCalculates the population distinct variance based on the distinct values of another field within the specified summary region (group, page or report).
    MaxCalculates the maximum of all values within the specified summary region (group, page or report).
    MinCalculates the minimum of all values within the specified summary region (group, page or report).
    StdDevCalculates the standard deviation of all values within the specified summary region (group, page or report).
    StdDevPCalculates the population standard deviation of all values within the specified summary region (group, page or report).
    SumCalculates the total of all values within the specified summary region (group, page or report).
    VarCalculates the variance of all values within the specified summary region (group, page or report).
    VarPCalculates the population variance of all values within the specified summary region (group, page or report).
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             GrapeCity.ActiveReports.SectionReportModel.SummaryFunc

    See Also