ASP.NET MVC Controls
Aggregate Enumeration

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

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

C1.Web.Mvc.Grid Namespace

 

 


Copyright (c) GrapeCity, inc. All rights reserved.

Product Support Forum |  Documentation Feedback