Hi,
My purpose is to insert blank page inside the table.
Thanks,
Bruno Lowagie (iText) wrote:
>
> edeniko wrote:
>> Hi,
>>
>> I'm using iText 1.4.7, and trying to insert a new page / page break into
>> PdfTable, with no luck.
>> Here's the code
Hi,
I'm using iText 1.4.7, and trying to insert a new page / page break into
PdfTable, with no luck.
Here's the code brief:
PdfPTable table = new PdfPTable(1);
PdfPCell cell = new PdfPCell(new Phrase("Something", font));
table.addCell(cell);
// NEW PAGE SHOULD BE INSERTED HERE
document.add(tabl