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
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();