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