Articles in this section
Category / Section

How to create same or different headers and footers for a document in New PDF?

1 min read

 

PdfSectionTemplate is used to draw different headers and footers for each section in a document. PdfDocumentTemplate can be used to draw the same header/footer for whole document

Here are some code snippet to draw section templates

C#

//Create new Template

PdfSectionTemplate template = new PdfSectionTemplate();

//Create new template element

 PdfPageTemplateElement element = new PdfPageTemplateElement(rect);

element.Graphics.DrawString("headerText1", new PdfStandardFont(PdfFontFamily.Helvetica, 26, PdfFontStyle.Bold), brush, new Point(0, 0));

template.Top = element;

VB

'Create new Template

Dim template As PdfSectionTemplate = New PdfSectionTemplate()

'Create new template element

Dim element As PdfPageTemplateElement = New PdfPageTemplateElement(rect)

element.Graphics.DrawString("headerText1", New PdfStandardFont(PdfFontFamily.Helvetica, 26, PdfFontStyle.Bold), brush, New Point(0, 0))

template.Top = element

Here is a sample for your reference

Sample.zip

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied