C2019-044 Added RowOverride toTop Continue Message to allow us to place the top continue message on the same row as the checkoff header

C2019-044 Use the value of RowOverride to place the top continue message on the same row as the checkoff header
This commit is contained in:
2021-08-05 13:23:48 +00:00
parent dc6114ba9a
commit 85c4f9694d
2 changed files with 31 additions and 2 deletions

View File

@@ -783,6 +783,22 @@ namespace VEPROMS.CSLA.Library
}
}
#endregion
#region RowOverride
// C2019-044 put in for Barakah Single Column format
// specify the row to put the top continue message
// this allows us to put the Top Continue Message on the same row as the checkoff (initials) header - per their writer's guide
private LazyLoad<float?> _RowOverride;
[Category("Continue Msg")]
[DisplayName("Top msg on specific row")]
[Description("Top msg on specific row")]
public float? RowOverride
{
get
{
return LazyLoad(ref _RowOverride, "@RowOverride");
}
}
#endregion
#region UseStepTabs
private LazyLoad<bool> _UseStepTabs;
[Category("Continue Msg")]