// build the table info
int nbCol = 3;
TableDescription tableDesc = new TableDescription(
ParagraphAlignment.LEFT);
// do not use the standar border, make our own, color red, with -.-
TableBorder border = new TableBorder(BorderStyle.BORDER_STYLE_DOT_DASH,
8, "FF0000");
tableDesc.setBorder(border);
// build cells and lines
for (int lineNo = 0; lineNo < 5; lineNo++) {