From e22a080953b09c96f87866698f946c84b795382b Mon Sep 17 00:00:00 2001 From: Kathy Date: Thu, 14 Jul 2011 15:58:32 +0000 Subject: [PATCH] --- .../Format/PlantFormat.cs | 58 +++++++++---------- 1 file changed, 26 insertions(+), 32 deletions(-) diff --git a/PROMS/VEPROMS.CSLA.Library/Format/PlantFormat.cs b/PROMS/VEPROMS.CSLA.Library/Format/PlantFormat.cs index ee61cf9c..9af2857d 100644 --- a/PROMS/VEPROMS.CSLA.Library/Format/PlantFormat.cs +++ b/PROMS/VEPROMS.CSLA.Library/Format/PlantFormat.cs @@ -1478,38 +1478,6 @@ namespace VEPROMS.CSLA.Library return LazyLoad(ref _BackColor, "@BackColor"); } } - private LazyLoad _CancelSecTitlesOnS1; - public bool CancelSecTitlesOnS1 - { - get - { - return LazyLoad(ref _CancelSecTitlesOnS1, "@CancelSecTitlesOnS1"); - } - } - private LazyLoad _CancelSecTitlesOnS2; - public bool CancelSecTitlesOnS2 - { - get - { - return LazyLoad(ref _CancelSecTitlesOnS2, "@CancelSecTitlesOnS2"); - } - } - private LazyLoad _CancelSecTitlesOnE0; - public bool CancelSecTitlesOnE0 - { - get - { - return LazyLoad(ref _CancelSecTitlesOnE0, "@CancelSecTitlesOnE0"); - } - } - private LazyLoad _CancelSecTitlesOnE2; - public bool CancelSecTitlesOnE2 - { - get - { - return LazyLoad(ref _CancelSecTitlesOnE2, "@CancelSecTitlesOnE2"); - } - } private LazyLoad _MetaSectEndMessage; public bool MetaSectEndMessage { @@ -3871,6 +3839,14 @@ namespace VEPROMS.CSLA.Library return (_StepEditData == null) ? _StepEditData = new StepEditData(base.XmlNode) : _StepEditData; } } + private StepPrintData _StepPrintData; + public StepPrintData StepPrintData + { + get + { + return (_StepPrintData == null) ? _StepPrintData = new StepPrintData(base.XmlNode) : _StepPrintData; + } + } private TabData _TabData; public TabData TabData { @@ -4156,6 +4132,24 @@ namespace VEPROMS.CSLA.Library } } #endregion + #region StepPrintData + [TypeConverter(typeof(ExpandableObjectConverter))] + public class StepPrintData : vlnFormatItem + { + public StepPrintData(XmlNode xmlNode) + : base(xmlNode) + { + } + private LazyLoad _PosAdjust; + public int? PosAdjust + { + get + { + return LazyLoad(ref _PosAdjust, "StepPrintData/@PosAdjust"); + } + } + } + #endregion #region TypeMenu [TypeConverter(typeof(ExpandableObjectConverter))] public class TypeMenu : vlnFormatItem