> From: chnarayana murthy <[EMAIL PROTECTED]>
> 
> hi, 
> can anyone let me know how to hide border of table and borders cells inside table. 
> this table is in generated pdf using iText api. 

        PdfPTable table;
        PdfPCell currentCell;

        table = new PdfPTable(2);
        currentCell = table.getDefaultCell();
        currentCell.setBorder(0);

Works for me...

-- 
Cheers,
Simon B,
[EMAIL PROTECTED],
http://www.brunningonline.net/simon/blog/


-------------------------------------------------------
This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170
Project Admins to receive an Apple iPod Mini FREE for your judgement on
who ports your project to Linux PPC the best. Sponsored by IBM.
Deadline: Sept. 24. Go here: http://sf.net/ppc_contest.php
_______________________________________________
iText-questions mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/itext-questions

Reply via email to