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