I have a table that I'm adding cells to.
for each cell I set the vertical alignment like so:
PdfPCell cell = new PdfPCell () { Colspan = 6, VerticalAlignment = Element.ALIGN_MIDDLE };
cell.BackgroundColor = new Color(########);
chunk = new Chunk("Chunk");
cell.AddElement(chunk);
table.AddCell(cell);
but the text "Chunk" is still at the bottom of the cell. I can see empty space at the top of the cell.
Why won't my text align properly?