How do I do the equivalent of <td colspan="99"><hr></td> in iText?
This works:

   cell = new PdfPCell(new Phrase(" ", cour8));
   cell.setColspan(po.getMaxSizes() + 3);
   cell.setBorder(Rectangle.BOTTOM);
   table.addCell(cell);

   cell = new PdfPCell(new Phrase(" ", cour8));
   cell.setColspan(po.getMaxSizes() + 3);
   cell.setBorder(Rectangle.NO_BORDER);
   table.addCell(cell);

but seems kind of kludgy. What's the proper way?

--
____________________________________________________________
Glenn Holmer                          [EMAIL PROTECTED]
Programmer/Analyst                       phone: 414.908.1809
Weyco Group, Inc.                          fax: 414.908.1601



-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive?  Does it
help you create better code?  SHARE THE LOVE, and help us help
YOU!  Click Here: http://sourceforge.net/donate/
_______________________________________________
iText-questions mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/itext-questions

Reply via email to