From 1e785d7400e06f2ed0b947f2aad7a1d55286456b Mon Sep 17 00:00:00 2001 From: John Date: Tue, 14 Jul 2020 16:00:49 +0000 Subject: [PATCH] C2017-017 added a footer with the page number and date generated. --- PROMS/Volian.Print.Library/PDFChronologyReport.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/PROMS/Volian.Print.Library/PDFChronologyReport.cs b/PROMS/Volian.Print.Library/PDFChronologyReport.cs index 35cdd858..014c811b 100644 --- a/PROMS/Volian.Print.Library/PDFChronologyReport.cs +++ b/PROMS/Volian.Print.Library/PDFChronologyReport.cs @@ -152,6 +152,9 @@ namespace Volian.Print.Library try { PdfWriter writer = PdfWriter.GetInstance(document, new FileStream(fileName, FileMode.Create)); + //C2017-017 add a footer consisting of the page number and date printed to summary/chronology of changes report + // This is the same Page Event used for Search reports (search results print) and is defined in PDFReport.cs + writer.PageEvent = new MyPageHelper("Procedure Changes"); document.SetMargins(36, 36, 36, 36); document.Open(); _FileName = fileName;