Beispiel #1
0
 /// <summary>
 /// Add a IList of texts to the header section
 /// </summary>
 /// <param name="PdfMakeTexts"></param>
 public void AddHeaderText <T>(IPdfMakeTexts <T> PdfMakeTexts)
 {
     Header.Add(PdfMakeTexts);
 }
Beispiel #2
0
 /// <summary>
 /// Add a IList of texts to the footer section
 /// </summary>
 /// <param name="PdfMakeTexts"></param>
 public void AddFooterText <T>(IPdfMakeTexts <T> PdfMakeTexts)
 {
     Footer.Add(PdfMakeTexts);
 }
Beispiel #3
0
 /// <summary>
 /// Add a IList of texts to the body section
 /// </summary>
 /// <param name="PdfMakeTexts"></param>
 public void AddBodyText <T>(IPdfMakeTexts <T> PdfMakeTexts)
 {
     Body.Add(PdfMakeTexts);
 }