C2019-040 added a format flag to adjust text width when a checkoff is used but not a checkoff header.

C2019-040 added a format flag to existing logic that will adjust text width when a checkoff is used on at least one step element, but a checkoff header is not being used
This commit is contained in:
2019-10-30 15:08:54 +00:00
parent 4a75b61f46
commit 61ef1d4b40
3 changed files with 17 additions and 4 deletions

View File

@@ -1891,6 +1891,16 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _CheckoffOnSubStepsOnly, "@CheckoffOnSubStepsOnly");
}
}
// C2019-040 This will adjust the right margin (making room for the checkoff) without the need of selecting a checkoff header
// the flag allows us to use existing coding that prior to this was restricted by format file name
private LazyLoad<bool> _CheckoffsWithoutHeader;
public bool CheckoffsWithoutHeader
{
get
{
return LazyLoad(ref _CheckoffsWithoutHeader, "@CheckoffsWithoutHeader");
}
}
}
#endregion
#region CheckOff