The project I'm working on has a PDF file that is used as a template to generate another final PDF.
The template has a couple of form fields. To render the final document I use iText to open the template, find all the form fields and fill in the required data.
There is a requirement now that requires me to render a table-like layout inside 1 multiline acrofield.
The text I need to fill in the field is something like:
Monday\tFrom 10:00\tUntil 12:00
Tuesday\tFrom 20:00\tUntil 22:00
I have used \n in the fields before for newlines, that seems to work. However, tabs don't get displayed. Is there any way I can use tabs in a multiline field?
I've tried using html entities / the unicode representation but that does not seem to work either.