From 14151289862e94275f3c4e3701010b51d2c1e5b0 Mon Sep 17 00:00:00 2001 From: Kathy Date: Wed, 20 Nov 2013 13:26:11 +0000 Subject: [PATCH] FNP: Component List on document style & Bottom continue message location fix FNP: Component List moved to document style --- .../VEPROMS.CSLA.Library/Format/DocStyles.cs | 20 +++++++++++++++++++ .../Format/PlantFormat.cs | 8 -------- 2 files changed, 20 insertions(+), 8 deletions(-) diff --git a/PROMS/VEPROMS.CSLA.Library/Format/DocStyles.cs b/PROMS/VEPROMS.CSLA.Library/Format/DocStyles.cs index 15272a50..c7527ace 100644 --- a/PROMS/VEPROMS.CSLA.Library/Format/DocStyles.cs +++ b/PROMS/VEPROMS.CSLA.Library/Format/DocStyles.cs @@ -284,6 +284,18 @@ namespace VEPROMS.CSLA.Library } } #endregion + #region ComponentList + [Category("Miscellaneous")] + [Description("Component List")] + private LazyLoad _ComponentList; + public bool ComponentList + { + get + { + return LazyLoad(ref _ComponentList, "@ComponentList"); + } + } + #endregion #region pagestyle private PageStyle _pagestyle; [Category("Miscellaneous")] @@ -619,6 +631,14 @@ namespace VEPROMS.CSLA.Library return LazyLoad(ref _Location, "@Location"); } } + private LazyLoad _NoOverrideSpace; + public bool NoOverrideSpace + { + get + { + return LazyLoad(ref _NoOverrideSpace, "@NoOverrideSpace"); + } + } #endregion #region Message private LazyLoad _Message; diff --git a/PROMS/VEPROMS.CSLA.Library/Format/PlantFormat.cs b/PROMS/VEPROMS.CSLA.Library/Format/PlantFormat.cs index d64c74ed..972f0dfd 100644 --- a/PROMS/VEPROMS.CSLA.Library/Format/PlantFormat.cs +++ b/PROMS/VEPROMS.CSLA.Library/Format/PlantFormat.cs @@ -179,14 +179,6 @@ namespace VEPROMS.CSLA.Library return LazyLoad(ref _Name, "@Name"); } } - private LazyLoad _ComponentTableFormat; - public bool ComponentTableFormat - { - get - { - return LazyLoad(ref _ComponentTableFormat, "@ComponentTableFormat"); - } - } // TPL represents Templates which are sizes of columns for 'table' type data. If the format // has the 'UseSmartTemplate' format flag, this table will have starting location & widths, and // other data for the listed step types. Data from this table overrides width data as specified