B2020-101: Add format flag for table pagination

B2020-101: Add format flag around code that was crashing during pagination around a large table
This commit is contained in:
2020-08-05 12:45:34 +00:00
parent 83ad0120e7
commit 784986f388
10 changed files with 11 additions and 1 deletions

View File

@@ -3808,6 +3808,14 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _PaginateOnFirstSubstep2X, "@PaginateOnFirstSubstep2X");
}
}
private LazyLoad<bool> _PageBreakParentWithTable; // B2020-101: Add format flag for table pagination
public bool PageBreakParentWithTable
{
get
{
return LazyLoad(ref _PageBreakParentWithTable, "@PageBreakParentWithTable");
}
}
private LazyLoad<bool> _UseHalfLines;
public bool UseHalfLines
{