Featured Post from richyrich
by
on October 21st, 2010 at 06:54 AM
Just a quick update on iTextSharp again. In my previous blog I explained how to add headers and footers to your PDF documents generated using iTextSharp.
I received a question about including page numbers in the footer of a document. This is very simple to do inside the OnEndPage override method of our PDFPageEventHelper inherited class.
In my class I include a public property called showPageCount
Code:
public bool showPageCount { get; set; }
So, from my PDF
...