graphics.setLineWidth(table.getBorderWidth());
if (cellsShown && (table.getBorder() & Rectangle.BOTTOM) == Rectangle.BOTTOM) {
// Draw the bottom line
// the color is set to the color of the element
Color tColor = table.getBorderColor();
if (tColor != null) {
graphics.setColorStroke(tColor);
}
graphics.moveTo(table.getLeft(), Math.max(table.getBottom(), indentBottom()));
graphics.lineTo(table.getRight(), Math.max(table.getBottom(), indentBottom()));