C2026-003 For Vogtle Units 3&4, added format variable to allow a high level RNO step be “tagged” as a Continuous Action Step, when the parent AER step is not a continuous action step
This commit is contained in:
@@ -3814,6 +3814,18 @@ namespace VEPROMS.CSLA.Library
|
||||
}
|
||||
}
|
||||
|
||||
// C2026-003 (for Vogtle Units 3&4) Adds the continuous action tag to a high level RNO
|
||||
// only when it as a tab and the parent is an AER step that is not tagged as a continuous action
|
||||
// Use this with the setting of CASPrintMacro and CASEditTag on the RNO step type TabData definition
|
||||
private LazyLoad<bool> _AddContActTagToHighLevelRNOWhenIncludedOnCAS;
|
||||
public bool AddContActTagToHighLevelRNOWhenIncludedOnCAS
|
||||
{
|
||||
get
|
||||
{
|
||||
return LazyLoad(ref _AddContActTagToHighLevelRNOWhenIncludedOnCAS, "@AddContActTagToHighLevelRNOWhenIncludedOnCAS");
|
||||
}
|
||||
}
|
||||
|
||||
// treat sub-sections and High Level Steps as if they are at the same procedure structure level. This is used with the TieTabToLevel flag
|
||||
private LazyLoad<bool> _SubSectAndHighSameLevel;
|
||||
public bool SubSectAndHighSameLevel
|
||||
@@ -5708,6 +5720,30 @@ public StepData Equation // equation has a parent of embedded object.
|
||||
return LazyLoad(ref _RNOIdentPrint, "TabData/@RNOIdent");
|
||||
}
|
||||
}
|
||||
// Adds a print macro for the high level RNO when the user want it to be a Continuous Action
|
||||
// while the corresponding AER is not a continuous action
|
||||
// C2026-003 used in RNO step definition for Vogtle 3&4 two column format
|
||||
// use with AddContActTagToHighLevelRNOWhenIncludedOnCAS set to True in the format file's StpSectLayData
|
||||
private LazyLoad<string> _CASPrintMacro;
|
||||
public string CASPrintMacro
|
||||
{
|
||||
get
|
||||
{
|
||||
return LazyLoad(ref _CASPrintMacro, "TabData/@CASPrintMacro");
|
||||
}
|
||||
}
|
||||
// Adds a character indicator in the step editor for the high level RNO when the user want it to be a Continuous Action
|
||||
// while the corresponding AER is not a continuous action
|
||||
// C2026-003 used in RNO step definition for Vogtle 3&4 two colmn format
|
||||
// use with AddContActTagToHighLevelRNOWhenIncludedOnCAS set to True in the format file's StpSectLayData
|
||||
private LazyLoad<string> _CASEditTag;
|
||||
public string CASEditTag
|
||||
{
|
||||
get
|
||||
{
|
||||
return LazyLoad(ref _CASEditTag, "TabData/@CASEditTag");
|
||||
}
|
||||
}
|
||||
|
||||
// don't use the defined macro when creating a step tab for the step type's RNO
|
||||
private LazyLoad<bool> _RNOExcludeMacros;
|
||||
|
||||
Reference in New Issue
Block a user