F2019-033 Added Flag to position the top continue message at the left margin

F2019-033 Added flag to position top continue message at the left margin
F2019-033 Added logic to support format flag to position the top continue message at the left margin
This commit is contained in:
2019-04-17 19:52:00 +00:00
parent 644e289561
commit c30518c4fe
3 changed files with 20 additions and 1 deletions

View File

@@ -809,6 +809,19 @@ namespace VEPROMS.CSLA.Library
}
}
#endregion
#region PlaceAtLeftMargin
private LazyLoad<bool> _PlaceAtLeftMargin; // F2019-033 only use the Left Margin plus any Top message margin
[Category("Continue Msg")]
[DisplayName("Flag to position at left margin")]
[Description("Flag to position at left margin")]
public bool PlaceAtLeftMargin
{
get
{
return LazyLoad(ref _PlaceAtLeftMargin, "@PlaceAtLeftMargin");
}
}
#endregion
#region Message
private LazyLoad<string> _Message;
[Category("Continue Msg")]