Pregunta

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.

¿Fue útil?

Solución

It's not a good idea to use a String with dots when you need a dotted line. It's better to use a dotted line created using the DottedLineSeparator class. See for instance the UnderlineWithDottedLine example.

Paragraph p = new Paragraph("This line will be underlined with a dotted line.");
DottedLineSeparator dottedline = new DottedLineSeparator();
dottedline.setOffset(-2);
dottedline.setGap(2f);
p.add(dottedline);
document.add(p);

In this example (see underline_dotted.pdf for the result), I add the line 2 points under the baseline of the paragraph (using the setOffset() method) and I define a gap of 2 points between the dots (using the setGap() method).

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top