B2023-052: Inconsistent change bar location

B2023-052: Beaver Valley - Inconsistent change bar location
This commit is contained in:
2023-05-10 13:16:43 +00:00
parent 3dd59e20d8
commit 620d5dab42
4 changed files with 16 additions and 0 deletions

View File

@@ -577,6 +577,18 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _FooterLength, "@FooterLength");
}
}
// B2023-052: Beaver Valley - Inconsistent change bar location
private LazyLoad<float?> _AbsChgBarAdj;
[Category("Location")]
[DisplayName("Absolute change bar adjustment for margin differences")]
[Description("Absolute change bar adjustment for margin differences")]
public float? AbsChgBarAdj
{
get
{
return LazyLoad(ref _AbsChgBarAdj, "@AbsChgBarAdj");
}
}
#endregion
#region LeftMargin
private LazyLoad<float?> _LeftMargin;