Exemplo n.º 1
0
 public static Paragraph AddParagraph(this Cell cell, string text, ParagraphAlignment align, string style = null)
 {
     return cell.AddParagraph().AddText(text, align, style);
 }
Exemplo n.º 2
0
 /// <summary>
 /// The add html text.
 /// </summary>
 /// <param name="section">The section.</param>
 /// <param name="html">The html.</param>
 /// <returns>The <see cref="FormattedText" />.</returns>
 public static Paragraph AddHtmlText(this Section section, string html)
 {
     return section.AddParagraph();
 }
Exemplo n.º 3
0
 public static Paragraph AddParagraph(this TextFrame frame, string text, ParagraphAlignment align, string style = null)
 {
     return frame.AddParagraph().AddText(text, align, style);
 }