[iText-questions] Problems with two tables in a document

2005-07-25 Thread slkate
Hi.I need to use Table,not PdfPTable.I use following example code Document document = new Document(PageSize.A4); PdfWriter.getInstance(document, new FileOutputStream(fileName)); document.open(); Table table = new Table(3); table.setBorderWidth(1); table.setBorderColor(new Color(0, 0, 255)); table

[iText-questions] Problems with two tables in a document

2004-04-03 Thread Sebastian Bauer
Hello, I'm new to iText and maybe I'm doing something very stupid wrong but I don't get a table correctly placed below an other table. I use following code ---<8--- Document document = new Document(PageSize.A4); PdfWriter.getInstance(document, new FileOutputStream(fileName)); document.open();