Exemplo n.º 1
0
 /// <summary>
 /// Adds a table to the header section
 /// </summary>
 /// <param name="pdfMakeTable"></param>
 public void AddHeaderTable <T>(IPdfMakeTable <T> pdfMakeTable)
 {
     Header.Add(pdfMakeTable);
 }
Exemplo n.º 2
0
 /// <summary>
 /// Adds a table to the footer section
 /// </summary>
 /// <param name="pdfMakeTable"></param>
 public void AddFooterTable <T>(IPdfMakeTable <T> pdfMakeTable)
 {
     Footer.Add(pdfMakeTable);
 }
Exemplo n.º 3
0
 /// <summary>
 /// Adds a table to the body section
 /// </summary>
 /// <param name="pdfMakeTable"></param>
 public void AddBodyTable <T>(IPdfMakeTable <T> pdfMakeTable)
 {
     Body.Add(pdfMakeTable);
 }