Quoting Paulo Soares <[EMAIL PROTECTED]>:

> >                 Table TimeTable = new Table(2);
> >                 TimeTable.setBorderWidth(2);
> >                 TimeTable.setBorderColor(new Color(0, 255, 255));
> >                 TimeTable.setAutoFillEmptyCells(true);
> >                 TimeTable.addCell("Date");
> >                 TimeTable.addCell("Description");
> >                 for(int i=0; i < size; i ++){
> >                     StringTokenizer strTok = new
> > StringTokenizer(((String)lstModTimetable.getElementAt(i)), ":");
> >                     while(strTok.hasMoreTokens()){
> >                         String Tok=strTok.nextToken();
> >                         TimeTable.addCell(Tok);
> >                     }
> >                 }

Maybe the Table border gets overwritten by the cellborders.
Have you tried setting the cellborders to NO_BORDER?

Bruno


-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
iText-questions mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/itext-questions

Reply via email to