The PDF I can produce at the moment:
(source: yart.com.au)
I want the text to fill up the space in the lower left. How can I do that? Thanks!
Solved
PdfContentByte cb = writer.DirectContent;
ColumnText ct = new ColumnText(cb);
ct.SetSimpleColumn(new Phrase(new Chunk(text, FontFactory.GetFont(FontFactory.HELVETICA, 18, Font.NORMAL))),
46, 190, 530, 36, 25, Element.ALIGN_LEFT | Element.ALIGN_TOP);
ct.Go();
For Cocoa Dev, yeah we can set line spacing for the text using PdfPCell's SetLeading property as:
PdfPCell.SetLeading(float fixedleading, float multiplied leading);