bonjour
j'ai une tableau (4,4) (lignes, colonnes) je veux savoir comment faire pour mettre les cells des coordonnées (2, 3), (2, 4), (3, 3) et (3, 4) dans un seul cell [ c-a-d colspan(2) et rowspan(2) ]

[ ][ ][ ][ ]
[ ][ ][¨¨¨]
[ ][ ][___]
[ ][ ][ ][ ]

PdfPTable table = new PdfPTable(4);

table.setWidths(new float[]{1, 1, 1, 1});
table.addCell("row 1; cell 1");
table.addCell("row 1; cell 2");
table.addCell("row 1; cell 3");
table.addCell("row 1; cell 4");
table.addCell("row 2; cell 1");
table.addCell("row 2; cell 2");
table.addCell("row 2; cell 3");
table.addCell("row 2; cell 4");
table.addCell("row 3; cell 1");
table.addCell("row 3; cell 2");
table.addCell("row 3; cell 3");
table.addCell("row 3; cell 4");
table.addCell("row 4; cell 1");
table.addCell("row 4; cell 2");
table.addCell("row 4; cell 3");
table.addCell("row 4; cell 4");