Added a NoOrphan1 format flag to control pagination

This commit is contained in:
Rich 2017-07-24 20:00:53 +00:00
parent 72784a7d48
commit c1dde58be3
4 changed files with 11 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -3510,6 +3510,17 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _KeepStepsOnPage, "@KeepStepsOnPage");
}
}
private LazyLoad<bool> _NoOrphans1;
/// <summary>
/// B2017-154 Np Orphans (single sub-step left over from previous page) No Children
/// </summary>
public bool NoOrphans1
{
get
{
return LazyLoad(ref _NoOrphans1, "@NoOrphans1");
}
}
private LazyLoad<bool> _BreakOnSections;
public bool BreakOnSections
{