C2023-001 added DontInsertBlankPages document style for Beave Valley CAS sections

C2023-001 logic to support to DontInsertBlankPages document style when inserting blank pages for duplex printing
This commit is contained in:
2023-01-20 17:18:31 +00:00
parent 4617b63f43
commit d4c64c9920
2 changed files with 67 additions and 6 deletions

View File

@@ -268,6 +268,19 @@ namespace VEPROMS.CSLA.Library
}
}
#endregion
#region DontInsertBlankPages
[Category("Miscellaneous")]
[Description("Don't insert blank pages in this section when printing duplex with blank pages")]
//C2023-001 Added for Beaver Valley CAS sections (their two column format)
private LazyLoad<bool> _DontInsertBlankPages;
public bool DontInsertBlankPages
{
get
{
return LazyLoad(ref _DontInsertBlankPages, "@DontInsertBlankPages");
}
}
#endregion
#region CenterLine
//CenterLineX="261.9" CenterLineYTop="673.2" CenterLineYBottom="44.2"
private LazyLoad<float?> _CenterLineX;