/// <summary> /// Adds a text to the header section /// </summary> /// <param name="PdfMakeText"></param> public void AddHeaderText(PdfMakeText PdfMakeText) { Header.Add(PdfMakeText); }
/// <summary> /// Adds a text to the footer section /// </summary> /// <param name="PdfMakeText"></param> public void AddFooterText(PdfMakeText PdfMakeText) { Footer.Add(PdfMakeText); }
/// <summary> /// Adds a text to the body section /// </summary> /// <param name="PdfMakeText"></param> public void AddText(PdfMakeText PdfMakeText) { Body.Add(PdfMakeText); }