Working with Headers and Footers
Contents
[
Hide
]
How to Create Headers Footers using DocumentBuilder
The following sample code demonstrates how to create headers/footers using DocumentBuilder..
Special attention is given to the following issues:
- How to specify header/footer type.
- How to instruct the document to display different headers/footers for the first page and for odd/even pages.
- How to insert an absolutely positioned image into the header.
- How to set font and paragraph properties for the header/footer text.
- How to insert page numbers into the header/footer.
- How to use a table to make one part of the header/footer text align to the left edge and the other to the right edge.
- How to control whether headers/footers of a subsequent section of the document use headers/footers defined in the previous section.
- How to ensure proper header/footer appearance when using different page orientation and size for subsequent sections.
Below example shows how to create headers footers using DocumentBuilder.
Each section in a document can have up to three headers and up to three footers (for first, even and odd pages). If you want to delete all footers in a document you need to loop through all sections and remove every footer node.
How to Remove Footers but Leave Headers Intact
Below example deletes all footers from all sections, but leaves headers intact. You can download the template file of this example from here.