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:
@@ -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")]
|
||||
|
Reference in New Issue
Block a user