Posts by Nuno Silva • 11 points
2 posts
-
0
votes2
answers1937
viewsA: iTextSharp - Dynamic table
good afternoon here follows my dynamic table with pictures. PdfPTable table = new PdfPTable(4); PdfPCell cell = new PdfPCell(new Phrase(" ")); table.AddCell(cell); cell = new PdfPCell(new…
-
1
votes3
answers1121
viewsA: Format line with itextsharp
Phrase texto_1= new Phrase("cliente: ", new Font(Font.FontFamily.TIMES_ROMAN, 12f, Font.BOLD, BaseColor.GRAY)); Phrase texto_2 = new Phrase(ViewBag.Nome + " "+ ViewBag.Sobrenome, new…