I have created a pdf document using Adobe LiveCycle. The problem I am facing is that I need to add some formatted text in a specific position on the document.
How can I do that?
overContent.BeginText();
overContent.SetTextMatrix(10, 400);
overContent.ShowText("test");
This will only add basic text in the position specified and I really need to a linebreak, bullets, etc.. in the document.
I am using iText in Java and also ran into a similar situation. I was just trying to insert a simple line break with NON-formatted text. The newline character (\n) doesnt fly. The solution I came up with (and it aint pretty) was:
There HAS to be a better way, but this worked for my situation (for the time being).