I want to create an Invoice with iTextSharp and need to print the Invoice Rows (in one Table) on multiple Pages.
On the first Invoice Page, the "InvoiceRow Table" should start in the half of the Page.
So if I add the Table via
invoiceTable.WriteSelectedRows(0, -1, 48, 570, pdfWriter.DirectContent);
to the Document, the Result is one Page without Page Breaks.
document.Add(invoiceTable);
performs Page Brakes but will add the Table on Top of the first Page.
Any Ideas how to start a Table Output on the First Page in the Middle and Page >= 2 on Top?