diff --git a/PROMS/VEPROMS.CSLA.Library/Format/PlantFormat.cs b/PROMS/VEPROMS.CSLA.Library/Format/PlantFormat.cs index 6cd4c99d..037b6416 100644 --- a/PROMS/VEPROMS.CSLA.Library/Format/PlantFormat.cs +++ b/PROMS/VEPROMS.CSLA.Library/Format/PlantFormat.cs @@ -5824,6 +5824,16 @@ namespace VEPROMS.CSLA.Library return LazyLoad(ref _ExcludeFromContActSum, "@ExcludeFromContActSum", true); // the default setting is true (as is yes, dont include on Continuous Action Summary) } } + //F2022-024 Time Critical Action Step + private LazyLoad _ExcludeFromTimeCriticalActSum; + public bool ExcludeFromTimeCriticalActSum + { + get + { + return LazyLoad(ref _ExcludeFromTimeCriticalActSum, "@ExcludeFromTimeCriticalActSum", true); // the default setting is true (as is yes, dont include on Tim Critical Action Summary) + } + } + } #endregion #region StepDataList @@ -6311,6 +6321,17 @@ namespace VEPROMS.CSLA.Library return _MacroList == null ? _MacroList = new MacroList(SelectNodes("TabData/MacroList/Macro")) : _MacroList; } } + // F2022-024 used with the Time Critial Step type (used in Robinson EOP/AOP format) + // this will put the character asigned in the Time Critial Step format defination next to the step tab on the edit screen + // When this step is printed, a macro named Clock (genmac format file) is used instead to print a clock symbol + private LazyLoad _MacroEditTag; + public string MacroEditTag + { + get + { + return LazyLoad(ref _MacroEditTag, "TabData/@MacroEditTag"); + } + } private LazyLoad _IdentEdit; public string IdentEdit {