Код: Выделить всё
PdfPTable pdftable4 = new PdfPTable(1);
pdftable4.HorizontalAlignment = 1;
PdfPCell cell2 = new PdfPCell(new Phrase("Tax and shipping calculated at time of shipment. If shipping is quoted, rates are subject to change based on time of shipment. Quote is valid for 30 days.", pdffont_h));
cell2.Colspan = 10;
cell2.DisableBorderSide(2);
pdftable4.AddCell(cell2);
PdfPTable pdftable5 = new PdfPTable(1);
pdftable5.HorizontalAlignment = 1;
PdfPCell cell5 = new PdfPCell(new Phrase("Unless explicitly stated in quote description, manufacturing quality and accuracy is based on the expectations defined in ", pdffont_h));
cell5.Colspan = 10;
cell5.DisableBorderSide(2);
pdftable5.AddCell(cell5);
Код: Выделить всё
var c = new Chunk("Fathommfg");
c.SetAnchor("https://www.google.com");
PdfPTable pdftable6 = new PdfTable(1);
PdfPCell cell6 = new PdfPCell(new Paragraph("https://www.google.com"));
cell6.AddElement(c);
pdftable6.AddCell(cell6);
document.Add(pdftable6);
Подробнее здесь: https://stackoverflow.com/questions/783 ... on-the-pdf