is this what you are looking for?

PdfPTable mainTable = new PdfPTable(2);

PdfPCell cell1 = new PdfPCell("some borderless cell");
cell1.setBorder(Rectangle.NO_BORDER);

PdfPCell cell2 = new PdfPCell("another borderless cell");
cell2.setBorder(Rectangle.NO_BORDER);

mainTable.addCell(cell1);
mainTable.addCell(cell2);

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions

Reply via email to