Example #1
0
 private void CloneFooter()
 {
     if (Footer == null)
     {
         return;
     }
     Footer.Empty();
     foreach (var row in Header.Rows)
     {
         Footer.Prepend(row.Clone());
     }
 }