iTextSharp: How to position and wrap long text?
- by aximili
The PDF I can produce at the moment:
I want the text to fill up the space in the lower left. How can I do that? Thanks!
This is my code:
private static void CreatePdf4(string pdfFilename, string heading, string text, string[] photos, string emoticon)
{
Document document = new Document(PageSize.A4.Rotate(), 26, 36, 0, 0);
PdfWriter writer =…