PdfWriter.getInstance(document, new GfrFileOutputStream("com.lowagie.examples.objects.tables.DefaultCell.pdf"));
// step 3: we open the document
document.open();
LwgPdfPTable table = new LwgPdfPTable(3);
LwgPdfPCell cell = new LwgPdfPCell(new Paragraph("header with colspan 3"));
cell.setColspan(3);
table.add(cell);
table.add("1.1");
table.add("2.1");
table.add("3.1");
table.getDefaultCell().setGrayFill(0.8f);
table.add("1.2");
table.add("2.2");
table.add("3.2");
table.getDefaultCell().setGrayFill(0f);
table.getDefaultCell().setBorderColor(new Color(255, 0, 0));
table.add("cell test1");
table.getDefaultCell().setColspan(2);
table.getDefaultCell().setBackgroundColor(new Color(0xC0, 0xC0, 0xC0));
table.add("cell test2");
document.add(table);
} catch (DocumentException de) {
System.err.println(de.getMessage());
} catch (IOException ioe) {
System.err.println(ioe.getMessage());