'宣言 Public Enum AggregateFuncEnum Inherits System.Enum
'使用法 Dim instance As AggregateFuncEnum
public enum AggregateFuncEnum : System.Enum
'宣言 Public Enum AggregateFuncEnum Inherits System.Enum
'使用法 Dim instance As AggregateFuncEnum
public enum AggregateFuncEnum : System.Enum
| メンバ | 解説 | 
|---|---|
| Average | Returns the average of values of the expression within the scope. | 
| Count | Returns the count of values of the expression within the scope. | 
| CountDistinct | Returns the count of distinct values of the expression within the scope. | 
| First | Returns the first (in the sorted sequence) value of the expression within the scope. | 
| Last | Returns the last (in the sorted sequence) value of the expression within the scope. | 
| Max | Returns the maximum of values of the expression within the scope. | 
| Min | Returns the minimum of values of the expression within the scope. | 
| StDev | Returns the standard deviation of values of the expression within the scope. | 
| StDevP | Returns the population standard deviation of values of the expression within the scope. | 
| Sum | Returns the sum of values of the expression within the scope. | 
| Var | Returns the variance of values of the expression within the scope. | 
| VarP | Returns the population variance of values of the expression within the scope. | 
System.Object
   System.ValueType
      System.Enum
         C1.C1Preview.DataBinding.AggregateFuncEnum