Add text to checkbox for blank page printing

Improve pagination for SAMG facing page print
This commit is contained in:
2017-05-12 13:50:02 +00:00
parent d8f00ec197
commit bbbcdf946a
7 changed files with 166 additions and 43 deletions

View File

@@ -6885,6 +6885,14 @@ namespace VEPROMS.CSLA.Library
[Serializable()]
public partial class SectionInfo : ItemInfo, IVEDrillDownReadOnly
{
// Keeps track of itemids for supplemental info steps where their associated steps would have page breaks.
private List<int> _StepSectPageBreaksForSupInfo = null;
public List<int> StepSectPageBreaksForSupInfo
{
get { return _StepSectPageBreaksForSupInfo; }
set { _StepSectPageBreaksForSupInfo = value; }
}
// Determine if this section contains any Supplemental information steps. This is used for print to determine
// whether some of the supinfo processing needs to occur.
private bool? _HasSupInfoSteps = null;