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