I am creating a pdf file from an html page using iTextPdf, for example:
iTextSharp.text.html.simpleparser.HTMLWorker hw = new iTextSharp.text.html.simpleparser.HTMLWorker(document); TextReader reader = new StringReader(HTML); hw.Parse(reader); document.Close();
but my html page is big and I need to add page inhibition in certain palms.
How to add these breaks to PDF?
thanks
ihorko
source share