Add text to checkbox for blank page printing
Improve pagination for SAMG facing page print
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user