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;