C2021-018 flags to show Alarm Point RO info in step editor

This commit is contained in:
John Jenko 2022-03-21 19:43:39 +00:00
parent fdc72f891d
commit 19783d9cc1
2 changed files with 21 additions and 0 deletions

View File

@ -385,6 +385,19 @@ namespace VEPROMS.CSLA.Library
} }
} }
#endregion #endregion
#region ShowAlarmPointWindowInfo
[Category("Miscellaneous")]
[Description("Show Alarm Point Table Info in Step Editor")]
private LazyLoad<bool> _ShowAlarmPointWindowInfo;
//C2021-018 show alarm point RO data in step editor (BNPP Alarms)
public bool ShowAlarmPointWindowInfo
{
get
{
return LazyLoad(ref _ShowAlarmPointWindowInfo, "@ShowAlarmPointWindowInfo");
}
}
#endregion
#region ComponentList #region ComponentList
[Category("Miscellaneous")] [Category("Miscellaneous")]
[Description("Component List")] [Description("Component List")]

View File

@ -149,6 +149,14 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _ROLkUpMatch, "@ROLkUpMatch"); return LazyLoad(ref _ROLkUpMatch, "@ROLkUpMatch");
} }
} }
private LazyLoad<bool> _ROLkUpInEditor; // C2021-018 (BNPP Alarms format)
public bool ROLkUpInEditor
{
get
{
return LazyLoad(ref _ROLkUpInEditor, "@ROLkUpInEditor");
}
}
private LazyLoad<int?> _MaxWidth; private LazyLoad<int?> _MaxWidth;
public int? MaxWidth public int? MaxWidth
{ {