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

@@ -3895,6 +3895,15 @@ namespace VEPROMS.CSLA.Library
return (tocPgNumAlgn == null || tocPgNumAlgn == "") ? "Left" : tocPgNumAlgn;
}
}
private LazyLoad<string> _TofCProcedureStepsTitle;
public string TofCProcedureStepsTitle
{
get
{
string tocProcStepsTitle = LazyLoad(ref _TofCProcedureStepsTitle, "@TofCProcedureStepsTitle");
return (tocProcStepsTitle == null || tocProcStepsTitle == "") ? "" : tocProcStepsTitle;
}
}
private VE_Font _Font;
public VE_Font Font
{