C2023-015: Pagination on sub-step (currently only for Vogtle 3_4)
This commit is contained in:
@@ -333,6 +333,25 @@ namespace VEPROMS.CSLA.Library
|
||||
OnPropertyChanged("Step_PreferredPagebreak");
|
||||
}
|
||||
}
|
||||
// C2023-015: Pagination on a sub-step
|
||||
public bool Step_SubStepPagebreak
|
||||
{
|
||||
get
|
||||
{
|
||||
string s = _Xp["Step", "SubStepPagebreak"];
|
||||
|
||||
if (s == string.Empty) return false;
|
||||
if (s == "True") return true;
|
||||
return false;
|
||||
}
|
||||
set
|
||||
{
|
||||
string s = _Xp["Step", "SubStepPagebreak"];
|
||||
if (value.ToString() == s) return;
|
||||
_Xp["Step", "SubStepPagebreak"] = value.ToString();
|
||||
OnPropertyChanged("Step_SubStepPagebreak");
|
||||
}
|
||||
}
|
||||
//[Category("Step Attributes")]
|
||||
//[DisplayName("Step Change Bar Override")]
|
||||
//[RefreshProperties(RefreshProperties.All)]
|
||||
|
Reference in New Issue
Block a user