diff --git a/PROMS/VEPROMS.CSLA.Library/Format/DocStyles.cs b/PROMS/VEPROMS.CSLA.Library/Format/DocStyles.cs index 15b404f9..ca910e7a 100644 --- a/PROMS/VEPROMS.CSLA.Library/Format/DocStyles.cs +++ b/PROMS/VEPROMS.CSLA.Library/Format/DocStyles.cs @@ -130,6 +130,18 @@ namespace VEPROMS.CSLA.Library } } #endregion + #region ResetFirstPageOnSection + [Category("Miscellaneous")] + [Description("Reset first page of section on Separate pagination section")] + private LazyLoad _ResetFirstPageOnSection; + public bool ResetFirstPageOnSection + { + get + { + return LazyLoad(ref _ResetFirstPageOnSection, "@ResetFirstPageOnSection"); + } + } + #endregion #region IncludeInTOC [Category("Miscellaneous")] [Description("Include in Auto Table Of Contents")] @@ -516,6 +528,14 @@ namespace VEPROMS.CSLA.Library return (_Bottom == null ? _Bottom = new Bottom(SelectSingleNode("Bottom")) : _Bottom); } } + private SectionTitle _SectionTitle; + public SectionTitle SectionTitle + { + get + { + return (_SectionTitle == null ? _SectionTitle = new SectionTitle(SelectSingleNode("SectionTitle")) : _SectionTitle); + } + } #endregion } #endregion @@ -668,6 +688,27 @@ namespace VEPROMS.CSLA.Library #endregion } #endregion + #region SectionTitle + [TypeConverter(typeof(ExpandableObjectConverter))] + public class SectionTitle : vlnFormatItem + { + public SectionTitle(XmlNode xmlNode) : base(xmlNode) { } + public SectionTitle() : base() { } + #region AppendToTitle + private LazyLoad _AppendToTitle; + [Category("Section Title Continue Msg")] + [DisplayName("AppendToTitle")] + [Description("Append Text to Section Title For Continue Msg")] + public string AppendToTitle + { + get + { + return LazyLoad(ref _AppendToTitle, "@AppendToTitle"); + } + } + #endregion + } + #endregion //SectionTitle - continue setting #endregion #region End [TypeConverter(typeof(ExpandableObjectConverter))] @@ -728,6 +769,14 @@ namespace VEPROMS.CSLA.Library return LazyLoad(ref _Margin, "@Margin"); } } + private LazyLoad _EndMessageOnEachSubSection; + public bool EndMessageOnEachSubSection + { + get + { + return LazyLoad(ref _EndMessageOnEachSubSection, "@EndMessageOnEachSubSection"); + } + } #endregion } #endregion diff --git a/PROMS/VEPROMS.CSLA.Library/Format/PlantFormat.cs b/PROMS/VEPROMS.CSLA.Library/Format/PlantFormat.cs index ca7e9d0e..8c596e77 100644 --- a/PROMS/VEPROMS.CSLA.Library/Format/PlantFormat.cs +++ b/PROMS/VEPROMS.CSLA.Library/Format/PlantFormat.cs @@ -3632,6 +3632,22 @@ namespace VEPROMS.CSLA.Library return LazyLoad(ref _TofCNumLevels, "@TofCNumLevels"); } } + private LazyLoad _TofCStartIndentAfterLevel; + public int? TofCStartIndentAfterLevel + { + get + { + return LazyLoad(ref _TofCStartIndentAfterLevel, "@TofCStartIndentAfterLevel"); + } + } + private LazyLoad _TofCUnderlineFirstLevelTitle; + public bool TofCUnderlineFirstLevelTitle + { + get + { + return LazyLoad(ref _TofCUnderlineFirstLevelTitle, "@TofCUnderlineFirstLevelTitle"); + } + } private VE_Font _Font; public VE_Font Font {