I need to crate a PDF with following structure!
http://www.freeimagehosting.net/6auu8 (link of my image)
my snippet was...
//Create new Pdfptable
PdfPTable table = new PdfPTable(4);
// create new cell
PdfPCell LEFT= new PdfPCell(new Phrase("Left"));
LEFT.Colspan = 1;
LEFT.Rowspan = 2;
table.AddCell(LEFT);
// create another cell
PdfPCell RIGHT= new PdfPCell(new Phrase("Right"));
RIGHT.Colspan = 3;
RIGHT.Rowspan = 2;
table.AddCell(RIGHT);
but, it not working.....