Fix possible symbol font discrepancy in tables
Allow options for handling foldout page if first page.
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user