F2018-022 added an AppendDotZero step type flag to append “.0” to a high level step number

This commit is contained in:
2018-03-21 17:12:43 +00:00
parent a99e5f1fef
commit b0269d4f56
3 changed files with 19 additions and 2 deletions

View File

@@ -4432,6 +4432,15 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _Inactive, "@Inactive");
}
}
// F2018-022 Added step type flag to append a ".0" to the end of the high level step - put in for Westinghouse single column format (wst1)
private LazyLoad<bool> _AppendDotZero;
public bool AppendDotZero
{
get
{
return LazyLoad(ref _AppendDotZero, "@AppendDotZero");
}
}
private LazyLoad<float?> _ColOverride;
public float? ColOverride
{