pdfptable

iTextSharp: SplitLate/SplitRows?

I have an issue where I have a table (PdfPTable) that may extend past the length of the page. I have tried looking up how to "split" a table onto more than one page but iTextSharp is pretty poorly documented in this area. Does anyone know how to do this without choosing an arbitrary Y position on the page and telling it to split if it's ...

how do I add bookmark into a pdfpcell

I am doing a report which contains more 1000 records by using pdfptable of itext. it is not easy to seek a particular record, so i am wondering if there is any way to add bookmark in a pdfpcell. ...

Add a column to PdfPTable, iTextSharp

Hey, I'm creating a PDF document using iTextSharp. I see how to create a new table with a number of columns but I can't see anyway to dynamically add a new column. The problem I have is I'm not going to know the number of columns I need straight away, so need to keep adding them Can somebody please enlighten me or am I going to have to...

itextSharp.PdfPTable - changing indentation of series of tables

I am have to print out a series of data objects where each consists of a changing number of label-value pairs so the ideal structure for that is obviously the PdfPTable. And so far everything works fine with it. But the data objects are in a hierarchical relationship to each other and the hierarchy level needs to be expressed by differen...

iTextSharp and moving some data to next page

Hi, I am creating an invoice using the iTextSharp. That displays nicely but sometime, when invoice items are larger in qty, the summary portion (which displays subtotal, tax, discounts, grand total etc) is splitted. Some displayes in current page and some moves to next page. I was thinking to move entire summary portion into next page, ...