Added parameter to print call for Continuous Action Summary

This commit is contained in:
John Jenko 2015-10-23 18:08:33 +00:00
parent 290bab9cbf
commit e30019797e

View File

@ -91,7 +91,7 @@ namespace PrintMSWord
pp.StatusChanged += new PromsPrinterStatusEvent(pp_StatusChanged);
_ElapsedTime = new Dictionary<PromsPrinterStatusType, TimeSpan>();
DateTime tStart = DateTime.Now;
string pdfFile = pp.Print(@"C:\TEMP\32Bit", false);
string pdfFile = pp.Print(@"C:\TEMP\32Bit", false, false); // (pdfpath, makePlaceKeeper, makeContinuousActionSummary)
DateTime tEnd = DateTime.Now;
_ElapsedTime.Add(PromsPrinterStatusType.Total, DateTime.Now - tStart);
MyTimerStatus = pdfFile + " created.";