Fix possible symbol font discrepancy in tables

Allow options for handling foldout page if first page.
This commit is contained in:
2013-09-10 12:46:23 +00:00
parent e47df68f83
commit 89965f1278
5 changed files with 78 additions and 19 deletions

View File

@@ -98,6 +98,15 @@ namespace Volian.Print.Library
get { return _OnBlankPage; }
set { _OnBlankPage = value; }
}
// when false, no page has been printed yet (for determining whether a blank page before print
// needs done if first section has foldouts)
private bool _PrintedAPage = false;
public bool PrintedAPage
{
get { return _PrintedAPage; }
set { _PrintedAPage = 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)
{
@@ -140,7 +149,7 @@ namespace Volian.Print.Library
PageListTopCheckOffHeader = null;
PageListLastCheckOffHeader = null;
YMultiplier = 1;
PrintedAPage = true;
}
private Gaps _MyGaps;
public Gaps MyGaps