Added a text box to enter a grouping title for use on the auto table of contents

Added TOC_Grouping_Title
Added TofCProcedureStepsTitle to rename the section title “Procedure Steps” to “OPERATOR ACTIONS” on the auto table of contents (used by V.C Summer -  SUMall.xml)
This commit is contained in:
2016-03-08 21:01:13 +00:00
parent 062a5be314
commit 0b3e70fd6d
4 changed files with 321 additions and 213 deletions

View File

@@ -377,6 +377,23 @@ namespace VEPROMS.CSLA.Library
}
}
[Category("General")]
[DisplayName("Table of Contents Grouping Title")]
[RefreshProperties(RefreshProperties.All)]
[Description("Section TOC Grouping Title")]
public string Section_TOC_Group_Title
{
get
{
string tmp = _Xp["Section", "TOC_Group_Title"];
return (tmp == null)? "" : tmp;
}
set
{
_Xp["Section", "TOC_Group_Title"] = value;
OnPropertyChanged("Section_TOC_Group_Title");
}
}
[Category("General")]
// Placekeeper
[DisplayName("Placekeeper")]
[RefreshProperties(RefreshProperties.All)]