From 0098d6251ad2d1e2b839f3aa61c8454d294c8ee9 Mon Sep 17 00:00:00 2001 From: John Date: Thu, 7 Aug 2014 14:09:17 +0000 Subject: [PATCH] Corrected the page length on the Records section in the single column format in order to prevent the end message from printing past the page boarder (box) --- PROMS/fmtxml/PlantSpecific_WolfCreak.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/PROMS/fmtxml/PlantSpecific_WolfCreak.cs b/PROMS/fmtxml/PlantSpecific_WolfCreak.cs index 7ccc8613..488e9769 100644 --- a/PROMS/fmtxml/PlantSpecific_WolfCreak.cs +++ b/PROMS/fmtxml/PlantSpecific_WolfCreak.cs @@ -258,6 +258,9 @@ namespace fmtxml // remove the 'DontCountInTabOfCont' flag on the cover page so that page counts in the // auto table of contents will be correct. dcstyles.DcStyles[3].DocStructStyle.DocStyle = dcstyles.DcStyles[3].DocStructStyle.DocStyle.Replace(", DontCountInTabOfCont", ""); + // Records + dcstyles.DcStyles[7].FooterLen = 0; + dcstyles.DcStyles[7].PageLength = 672; // same length as Procedure Steps section to fix End message placement } }