All,
I’m a newbie. I had a question on how to
control the font of the page number. It’s too large. Currently, I only
use the HeaderFooter object to only
Specify where to place it. I would like it’s size to
be the same as the font for the header.
Font font6
= FontFactory.getFont(FontFactory.HELVETICA, 6)
Chunk ch;
ch = new Chunk(currentDate + "\n" + "Page:");
ch.setFont(font6);
HeaderFooter hdr
= new
HeaderFooter(new
Phrase(ch), true);
hdr.setAlignment(Element.ALIGN_RIGHT);
hdr.setBorder(0);
document.setHeader(hdr);
Thanks,
Norma