C2021-015: High Level Steps in Table of Contents

C2021-015: Barakah High Level Steps in Table of Contents
This commit is contained in:
2022-02-23 14:46:04 +00:00
parent 9fa8bd5245
commit 1b7bb16e6d
8 changed files with 353 additions and 90 deletions

View File

@@ -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.