C# Class PdfRpt.FooterTemplates.InlineFooterProvider

Defines dynamic footer of the pages.
Inheritance: IPageFooter
ファイルを表示 Open project: VahidN/PdfReport

Public Methods

Method Description
ClosingDocument ( PdfWriter writer, Document document, IList columnCellsSummaryData ) : void

Fires before closing the document

DocumentOpened ( PdfWriter writer, IList columnCellsSummaryData ) : void

Fires when the document is opened.

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

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

Private Methods

Method Description
initTemplate ( PdfWriter writer ) : void
setFinalPageNumber ( PdfWriter writer ) : void

Method Details

ClosingDocument() public method

Fires before closing the document
public ClosingDocument ( PdfWriter writer, Document document, IList columnCellsSummaryData ) : void
writer iTextSharp.text.pdf.PdfWriter PdfWriter
document iTextSharp.text.Document PDF Document
columnCellsSummaryData IList List of all rows summaries data
return void

DocumentOpened() public method

Fires when the document is opened.
public DocumentOpened ( PdfWriter writer, IList columnCellsSummaryData ) : void
writer iTextSharp.text.pdf.PdfWriter PdfWriter
columnCellsSummaryData IList List of all rows summaries data
return void

PageFinished() public method

Fires when a page is finished, just before being written to the document.
public PageFinished ( PdfWriter writer, Document document, IList columnCellsSummaryData ) : void
writer iTextSharp.text.pdf.PdfWriter PdfWriter
document iTextSharp.text.Document PDF Document
columnCellsSummaryData IList List of all rows summaries data
return void