I'm using iTextPdf for pdf generation and I'm creating nested table using the below code.
PdfPTable table = new PdfPTable(3);
PdfPTable nestedTable = new PdfPTable(2);
table.addCell(nestedTable);
Now, I want the border width of table
to be 0, i.e invisible. I've checked the api and several posts on SO but I couldn't find anything substantial. Is there a way to do so ?
I'm using iText version 5.1.2