示例#1
0
 public int Count(ITable table, string whereClause)
 {
     return(CustomStatisticClass.Count(table, whereClause));
 }
示例#2
0
 public object Min(ITable table, string fieldName, string whereClause)
 {
     return(CustomStatisticClass.Min(table, fieldName, whereClause));
 }
示例#3
0
 public double Sum(ITable table, string fieldName, string whereClause)
 {
     return(CustomStatisticClass.Sum(table, fieldName, whereClause));
 }
示例#4
0
 public object Min(string fieldName, string whereClause)
 {
     return(CustomStatisticClass.Min(this.OriginalObject as ITable, fieldName, whereClause));
 }
示例#5
0
 public object[] Unique(string fieldName, string whereClause)
 {
     return(CustomStatisticClass.Unique(FeatureClass as ITable, fieldName, whereClause));
 }