I’ve been trying to solve this problem for a while now to no avail. I have some text in iTextSharp I’m trying to put on a newline. I’ve tried using the \\n escape c
\\n
For me it worked like this:
document.Add(new Chunk("\n"));
worked fine, but the space was greater than I expected. so I went with this:
document.Add(new Paragraph(" "));
the result was a fine and regular space between my components.