Re: [iText-questions] PdfTable & new page / page break

2007-12-18 Thread edeniko
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

[iText-questions] PdfTable & new page / page break

2007-12-17 Thread edeniko
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