/// <summary> /// Adds a table to the header section /// </summary> /// <param name="pdfMakeTable"></param> public void AddHeaderTable(PdfMakeTable <object> pdfMakeTable) { Header.Add(pdfMakeTable); }
/// <summary> /// Adds a table to the footer section /// </summary> /// <param name="pdfMakeTable"></param> public void AddFooterTable(PdfMakeTable <object> pdfMakeTable) { Footer.Add(pdfMakeTable); }
/// <summary> /// Adds a table to the body section /// </summary> /// <param name="pdfMakeTable"></param> public void AddTable(PdfMakeTable <object> pdfMakeTable) { Body.Add(pdfMakeTable); }