So I am writing to a pdf through java using iText. I want to have a blank signature and date spaces underlined. Everything I read said to do it like so:
Ch
You are concatenating String with Chunk objects. Add the underlines as Chunk's
Chunk sigUnderline = new Chunk(" ");
sigUnderline.setUnderline(0.1f, -2f);
Chunk dateUnderline = new Chunk(" ");
dateUnderline.setUnderline(0.1f, -2f);
Paragraph para = new Paragraph("Authorized Signature: ");
para.add(sigUnderline);
para.add(new Chunk(" Date: "));
para.add(dateUnderline);
document.add(para);