C# Class PdfRpt.Core.Helper.HeaderFooterManager

A class to encapsulate header and footer related methods.
Afficher le fichier Open project: VahidN/PdfReport Class Usage Examples

Méthodes publiques

Méthode Description
AddFooter ( PdfWriter writer, Document document, IList columnCellsSummaryData ) : void

Fires when a page is finished, just before being written to the document.

AddHeader ( PdfWriter writer, Document document ) : void

Fires when a new page is being added

ApplyFooter ( PdfWriter writer, Document document, IList columnCellsSummaryData ) : void

Fires before closing the document

InitFooter ( PdfWriter writer, IList columnCellsSummaryData ) : void

Fires when the document is opened

Method Details

AddFooter() public méthode

Fires when a page is finished, just before being written to the document.
public AddFooter ( PdfWriter writer, Document document, IList columnCellsSummaryData ) : void
writer iTextSharp.text.pdf.PdfWriter PdfWriter
document iTextSharp.text.Document PDF Document
columnCellsSummaryData IList Rows summaries data
Résultat void

AddHeader() public méthode

Fires when a new page is being added
public AddHeader ( PdfWriter writer, Document document ) : void
writer iTextSharp.text.pdf.PdfWriter PdfWriter
document iTextSharp.text.Document PDF Document
Résultat void

ApplyFooter() public méthode

Fires before closing the document
public ApplyFooter ( PdfWriter writer, Document document, IList columnCellsSummaryData ) : void
writer iTextSharp.text.pdf.PdfWriter PdfWriter
document iTextSharp.text.Document PDF Document
columnCellsSummaryData IList Rows summaries data
Résultat void

InitFooter() public méthode

Fires when the document is opened
public InitFooter ( PdfWriter writer, IList columnCellsSummaryData ) : void
writer iTextSharp.text.pdf.PdfWriter PdfWriter
columnCellsSummaryData IList Rows summaries data
Résultat void