On 13.02.2007, at 08:36, Raghu wrote:
> how to add image in second row with colspan of 2 ?
Use the setColspan method on the Cell object.
Greetings,
Mark
-
Using Tomcat but need to do more? Need to support web services, secu
A table has two rows ,two columns
first row has data in two columns,
Second row has to have image with colspan 2
Table table = new Table(3);
table.setWidth(100);
table.setPadding(2);
table.setDefaultHorizontalAlignment(Element.ALIGN_CENTER);
Cell cell = new Cell(new Chunk(img, 0, -13));
cell.se