Create A PDF To Show Document In Table Format Using C#
I was trying to create a pdf document which should show document in table format in C#. So at first I added iTextSharp library to my application. Then three namespaces: using iTextSharp.text; using iTextSharp.text.pdf; using iTextSharp.text.html; Then added code: Document doc = new Document(PageSize.A4); PdfWriter.GetInstance(doc,newFileStream("/hello.pdf",FileMode.Create)); doc.Open(); Then tried to add table to document using Table…
read more