I want to place cells vertically in table. Normally, it is placed as follows:
That way, I'm gonna put 10 contents in the cells. Waiting for your helps.
PdfPTable table = new PdfPTable(2);
table.AddCell("content 1");
table.AddCell("content 2");
table.AddCell("content 3");
table.AddCell("content 4");
document.Add(table);