コード例 #1
0
 public void ComputeAggregates()
 {
     if (computeAggregateExecuted || GroupValues != null || TotalGroupValues != null)
     {
         return;
     }
     computeAggregateExecuted = true;
     Column.ComputeAggregates(this, ColumnHierarchy.AggregateType);
     ConditionalFormatting?.AddValue(GetValue());
 }