F2023-035: WCN Supplemental information pages, when duplex print need left margin adjustment for hole punch

This commit is contained in:
2023-03-21 15:12:34 +00:00
parent 1fa6b5f7d8
commit 764e5b2bbd
5 changed files with 44 additions and 22 deletions

View File

@@ -171,6 +171,18 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _SupplementalInformation, "@SupplementalInformation");
}
}
// F2023-035: WCN - allow for change in left margin for supplemental information pages by
// setting a value in the DocStyle for the adjustment. This is used when importing the vlnParagraph page
// page & when doing pagelist items
private LazyLoad<float?> _SupInfoMargAdj;
public float? SupInfoMargAdj
{
get
{
return LazyLoad(ref _SupInfoMargAdj, "@SupInfoMargAdj");
}
}
#endregion
#region LandscapePageList
[Category("Miscellaneous")]