SAMG Supplemental Information Facing pages
Create property versus variable for facing pages (prevents possible null crash)
This commit is contained in:
@@ -6935,7 +6935,11 @@ namespace VEPROMS.CSLA.Library
|
||||
private List<int> _StepSectPageBreaks = null;
|
||||
public List<int> StepSectPageBreaks
|
||||
{
|
||||
get { return _StepSectPageBreaks; }
|
||||
get
|
||||
{
|
||||
if (_StepSectPageBreaks == null) _StepSectPageBreaks = new List<int>();
|
||||
return _StepSectPageBreaks;
|
||||
}
|
||||
set { _StepSectPageBreaks = value; }
|
||||
}
|
||||
// Determine if this section contains any Supplemental information steps. This is used for print to determine
|
||||
|
Reference in New Issue
Block a user