Support for SAMGS Supplemental Information
This commit is contained in:
@@ -222,6 +222,12 @@ namespace Volian.Print.Library
|
||||
get { return _PrintedSectionPage; }
|
||||
set { _PrintedSectionPage = value; }
|
||||
}
|
||||
private bool _PrintingSupplmentalInformation = false;
|
||||
public bool PrintingSupplmentalInformation
|
||||
{
|
||||
get { return _PrintingSupplmentalInformation; }
|
||||
set { _PrintingSupplmentalInformation = value; }
|
||||
}
|
||||
|
||||
//private bool _AddBlankPagesForDuplexPrinting = false;
|
||||
//public bool AddBlankPagesForDuplexPrinting // Tells us if a the option to add a blank page is turn on (for procedures with duplex foldouts)
|
||||
@@ -252,7 +258,7 @@ namespace Volian.Print.Library
|
||||
DrawFootnotes(writer.DirectContent);
|
||||
DrawChangeBars(writer.DirectContent);
|
||||
DrawMessages(writer.DirectContent);
|
||||
if (!CreatingFoldoutPage)
|
||||
if (!CreatingFoldoutPage && !CreatingSupInfoPage)
|
||||
{
|
||||
DrawRuler(writer.DirectContent);
|
||||
float x = MySection == null ? 555 : (float)MySection.MyDocStyle.Layout.PageWidth;
|
||||
@@ -269,7 +275,7 @@ namespace Volian.Print.Library
|
||||
else
|
||||
MyPageCounts.CanIncrement = true;
|
||||
base.OnEndPage(writer, document);
|
||||
if (!CreatingFoldoutPage)
|
||||
if (!CreatingFoldoutPage && !CreatingSupInfoPage)
|
||||
DrawRuler(writer.DirectContent);
|
||||
}
|
||||
// added the check for onBlankPage and Foldouts to fix bug found in V.C. Summer auto table of contents - 03/08/2016
|
||||
|
Reference in New Issue
Block a user