John, I don't have trouble using colspan with nested tables.
This is the code I am using: PdfPTable oTable = new PdfPTable(4); PdfPTable oNestedTable = new PdfPTable(8); ... ... ... PdfPCell oCell = new PdfPCell(oNestedTable); oCell.setCospan(3); oTable.addCell(oCell); Everything works as expected. Best Regards, Joachim Petzold > -----Original Message----- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of John > Watson > Sent: Wednesday, March 20, 2002 3:15 PM > To: [EMAIL PROTECTED] > Subject: [iText-questions] adding a Table to a Cell ignores colspan > > > I love being able to add a Table to a Cell now. But, when I do this, the > colspan on the Cell gets ignored. Is this intended, or an unintended > side-effect? Thanks! > John > > > _______________________________________________ > iText-questions mailing list > [EMAIL PROTECTED] > https://lists.sourceforge.net/lists/listinfo/itext-questions > _______________________________________________ iText-questions mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/itext-questions
