I need to merge 2 paragraphs, the first is a sequence of dots, and the second is the text that I want write on dots:
Paragraph pdots1 = new Paragraph("......................................................................................................................",font10);
Paragraph pnote= new Paragraph("Some text on the dots", font10);
I tried to play with: pnote.setExtraParagraphSpace(-15); But this mess up the next paragraphs. I tried too with this: itext positioning text absolutely and works fine but only if my pdf size is fixed. So don't solve my problem.