Using cete Dynamic PDFtool I want to remove the footer template from the first page of the document. How to achieve this?
Page.Elements.Add(tblcontent);
Document.Pages.Add(Page);
Using cete Dynamic PDFtool I want to remove the footer template from the first page of the document. How to achieve this?
Page.Elements.Add(tblcontent);
Document.Pages.Add(Page);
Copyright © 2021 Jogjafile Inc.
The page class has an ApplyDocumentTemplate property that you can set to false, if you do not want a the template to be applied to a particular page.
You can also accomplish this by using document sectioning. When a document is broken up into sections, each section can have its own template, or not have a template at all. In this following example, the first section doesn't have a template so the page numbers are not shown for the first two pages, and the second section does so page numbers are shown for the last 3 pages.
Here is a link to a topic on document sectioning: http://docs.dynamicpdf.com/NET_Help_Library_19_08/Document%20Sectioning.html