From 7313a8dea8a5029aa54c59b699b575a734941790 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 5 Jun 2023 20:09:10 +0000 Subject: [PATCH] B2023-069 added a document style flag SecOvrideSupInfoTabOff to allow for the adjustment of the Supplemental Information step tabs on a per section basis --- PROMS/VEPROMS.CSLA.Library/Format/DocStyles.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/PROMS/VEPROMS.CSLA.Library/Format/DocStyles.cs b/PROMS/VEPROMS.CSLA.Library/Format/DocStyles.cs index b067a239..4e17f2e3 100644 --- a/PROMS/VEPROMS.CSLA.Library/Format/DocStyles.cs +++ b/PROMS/VEPROMS.CSLA.Library/Format/DocStyles.cs @@ -136,6 +136,20 @@ namespace VEPROMS.CSLA.Library } } #endregion + #region SecOvrideSupInfoTabOff + // This overrides the tab position of the Supplemental Information steps at the section level + // This will also override the overall supplemental Information tab adjustment set at the format level (SupInfoTabOff) + [Category("Miscellaneous")] + [Description("SecOvrideSupInfoTabOff")] + private LazyLoad _SecOvrideSupInfoTabOff; + public int? SecOvrideSupInfoTabOff + { + get + { + return LazyLoad(ref _SecOvrideSupInfoTabOff, "@SecOvrideSupInfoTabOff"); + } + } + #endregion #region IsStepSection [Category("Miscellaneous")] [Description("Is a Step Section")]