Ejemplo n.º 1
0
 public void SetRowIndex(int index)
 {
     this.RowIndex = index;
     if (ParentFooter != null)
     {
         ParentFooter.SetRowIndex(index);
     }
 }
Ejemplo n.º 2
0
        public void SetValue(EbDataRow currentRow)
        {
            foreach (var _key in this.Aggregations.Keys)
            {
                this.Aggregations[_key].SetValue(Convert.ToDecimal(currentRow[_key]));
            }

            if (ParentFooter != null)
            {
                ParentFooter.SetValue(currentRow);
            }
        }