B2019-150 & B2019-151 - Pagination Flag added to limit where new pagination logic would be used.

This commit is contained in:
Rich
2019-10-28 18:38:43 +00:00
parent caf1fe24f6
commit 2f06862a79
13 changed files with 14 additions and 2 deletions

View File

@@ -3726,6 +3726,14 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _SpecialPageBreakFlag, "@SpecialPageBreakFlag");
}
}
private LazyLoad<bool> _PaginateOnStepThatWillFitOnBlankPage;
public bool PaginateOnStepThatWillFitOnBlankPage
{
get
{
return LazyLoad(ref _PaginateOnStepThatWillFitOnBlankPage, "@PaginateOnStepThatWillFitOnBlankPage");
}
}
private LazyLoad<bool> _PaginateOnFirstSubstep;
public bool PaginateOnFirstSubstep
{