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:
@@ -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)]
|
||||
|
Reference in New Issue
Block a user