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;
|
||||
|
@@ -240,5 +240,11 @@ namespace VEPROMS.CSLA.Library
|
||||
CtrlRight = 7,
|
||||
CtrlLeft = 8
|
||||
}
|
||||
public enum E_SupInfoPrintType : uint
|
||||
{
|
||||
None = 0,
|
||||
DoPageBreaks = 1,
|
||||
Merge = 2
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
|
Reference in New Issue
Block a user