Title: Nested PdfPTable

I am creating 3 PdfPTable objects similar to the following:

        PdfPTable table = new PdfPTable(2);
        PdfPTable tbl1 = new PdfPTable(2);
        PdfPTable tbl2 = new PdfPTable(2);
        // add cells to tbl1 and tbl2
        table.addCell(tbl1);
        table.addCell(tbl2);

The cells added inside tbl1 and tbl2 have their border turned off; however when tbl1 and tbl2 are added to the outside PdfPTable object, their borders are enabled.  Is there anyway to disable the borders on that outside PdfPTable or on the two nested tables?

_______________________________________________________
Chris Cranford
Programmer/Developer
SETECH Inc. & Companies
6302 Fairview Rd, Suite 201
Charlotte, NC  28210
Phone: (704) 362-9423, Fax: (704) 362-9409, Mobile: (704) 650-1042�
Email: [EMAIL PROTECTED]

Reply via email to