I am currently working with a PdfPtable and everything is fine so far - but I have one annoying problem: sometimes a table is higher than a page, the PDFPtable then breaks and some rows are on the next page.
Unfortunately, I am currently modelling a piece of older software who simply shrinks the table until it fits to one page. Does anyone have an idea how to achieve this behaviour?
In short: Is there a way to keep a table on one page? Shrinking the table instead of splitting the table.
Very simple code so far:
Dim Mytables as List(Of DataTables)
Dim doc As Document = Nothing
doc = New Document(iTextSharp.text.PageSize.A4.Rotate, 1, 1, 1, 1)
Dim pdfw = PdfWriter.GetInstance(doc, New FileStream(PDFPath, FileMode.Create))
pdfw.SetFullCompression()
pdfw.CloseStream = True
mywriter = pdfw
for i=0 to myTables.count-1
Dim Table = New PdfPTable(myTables(i).Columns.Count)
Here comes a huge chunk of business logic.
doc.add(table)
Doc.NewPage()
next.
I have tried table.keeptogether=true and Table.SplitLate = True, with no effect.