/// <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); }
/// <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); }
/// <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); }