コード例 #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));
 }