removed a console.writeline
Control to create RO Usage, RO Summary, RO Complete, and Transition Usage reports Logic to print RO Usage reports Ifdef’d logic for UseOnFirstPage logic for Width Override and Ifdef’d logic for UseOnFirstPage Beginings of code to generate a Complete RO Report
This commit is contained in:
@@ -340,6 +340,20 @@ namespace Volian.Print.Library
|
||||
{
|
||||
|
||||
if ((mySection.MyContent.Number.ToUpper() == "FOLDOUT") != doingFoldout) continue;
|
||||
SectionConfig sc = mySection.MyConfig as SectionConfig;
|
||||
#if AllButFirstPage
|
||||
if (_MyHelper != null && mySection.IsStepSection && mySection.MyPrevious != null && mySection.MyPrevious.IsStepSection)
|
||||
{
|
||||
//SectionConfig.SectionPagination sPag = SectionConfig.SectionPagination.Separate;
|
||||
//sPag = sc.Section_Pagination;
|
||||
//if (sPag == SectionConfig.SectionPagination.Continuous)
|
||||
if (sc.Section_Pagination == SectionConfig.SectionPagination.Continuous)
|
||||
{
|
||||
if (mySection.MyDocStyle.StructureStyle.Where == E_DocStyleUse.UseOnFirstPage)
|
||||
mySection.DidFirstPageDocStyle = true;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
PrintOverride.CompressSuper = mySection.ActiveFormat.PlantFormat.FormatData.SectData.StepSectionData.CompressHPSuper;
|
||||
PrintOverride.CompressSub = mySection.ActiveFormat.PlantFormat.FormatData.SectData.StepSectionData.CompressHPSub;
|
||||
OnStatusChanged((mySection.DisplayNumber ?? "") == "" ? mySection.DisplayText : mySection.DisplayNumber, PromsPrinterStatusType.Progress, progress++);
|
||||
@@ -391,7 +405,7 @@ namespace Volian.Print.Library
|
||||
PdfReader readerWord = null;
|
||||
string myPdfFile = null;
|
||||
_MyHelper.FinalMessageSectionID = finalMessageSectionID; // set VlnSvgPageHelper with the finalMessageSectionID
|
||||
SectionConfig sc = mySection.MyConfig as SectionConfig;
|
||||
//SectionConfig sc = mySection.MyConfig as SectionConfig;
|
||||
if (mySection.IsAutoTOCSection)
|
||||
GenerateTOC(mySection, myProcedure, cb, _TextLayer);
|
||||
else
|
||||
@@ -662,7 +676,10 @@ namespace Volian.Print.Library
|
||||
private float _NoBreakYPageStart = 0;
|
||||
private void CreateStepPdf(SectionInfo section, PdfContentByte cb)
|
||||
{
|
||||
//section.PageNumForDocStyle = 1; // first step of the section
|
||||
//section.PageNumForDocStyle = 1;
|
||||
#if AllButFirstPage
|
||||
section.DidFirstPageDocStyle = false; // first step of the section
|
||||
#endif
|
||||
iTextSharp.text.pdf.PdfWriter writer = cb.PdfWriter;
|
||||
ItemInfo myItemInfo = section as ItemInfo;
|
||||
// 792: 72 * 11 inches - TopRow - Top is high value
|
||||
|
Reference in New Issue
Block a user