C2021-015: High Level Steps in Table of Contents
C2021-015: Barakah High Level Steps in Table of Contents
This commit is contained in:
@@ -400,6 +400,25 @@ namespace VEPROMS.CSLA.Library
|
||||
OnPropertyChanged("SpellCheckerChangedText");
|
||||
}
|
||||
}
|
||||
// C2021-015: Barakah High Level Steps in Table of Contents
|
||||
public bool Step_IncludeInTOC
|
||||
{
|
||||
get
|
||||
{
|
||||
string s = _Xp["Step", "IncludeInTOC"];
|
||||
|
||||
if (s == string.Empty) return false;
|
||||
if (s == "True") return true;
|
||||
return false;
|
||||
}
|
||||
set
|
||||
{
|
||||
string s = _Xp["Step", "IncludeInTOC"];
|
||||
if (value.ToString() == s) return;
|
||||
_Xp["Step", "IncludeInTOC"] = value.ToString();
|
||||
OnPropertyChanged("Step_IncludeInTOC");
|
||||
}
|
||||
}
|
||||
#region RO image sizing
|
||||
// if the RO image (figure) is resized, save it in the step config, not in the ROImageConfig. If stored in ROImageConfig
|
||||
// the size is set for ALL uses.
|
||||
|
Reference in New Issue
Block a user