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)

This commit is contained in:
John Jenko 2014-08-07 14:09:17 +00:00
parent c21ca1547d
commit 0098d6251a

View File

@ -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
}
}