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");
			
		
 
	
Partager