This commit is contained in:
parent
3cc2284e42
commit
e22a080953
@ -1478,38 +1478,6 @@ namespace VEPROMS.CSLA.Library
|
||||
return LazyLoad(ref _BackColor, "@BackColor");
|
||||
}
|
||||
}
|
||||
private LazyLoad<bool> _CancelSecTitlesOnS1;
|
||||
public bool CancelSecTitlesOnS1
|
||||
{
|
||||
get
|
||||
{
|
||||
return LazyLoad(ref _CancelSecTitlesOnS1, "@CancelSecTitlesOnS1");
|
||||
}
|
||||
}
|
||||
private LazyLoad<bool> _CancelSecTitlesOnS2;
|
||||
public bool CancelSecTitlesOnS2
|
||||
{
|
||||
get
|
||||
{
|
||||
return LazyLoad(ref _CancelSecTitlesOnS2, "@CancelSecTitlesOnS2");
|
||||
}
|
||||
}
|
||||
private LazyLoad<bool> _CancelSecTitlesOnE0;
|
||||
public bool CancelSecTitlesOnE0
|
||||
{
|
||||
get
|
||||
{
|
||||
return LazyLoad(ref _CancelSecTitlesOnE0, "@CancelSecTitlesOnE0");
|
||||
}
|
||||
}
|
||||
private LazyLoad<bool> _CancelSecTitlesOnE2;
|
||||
public bool CancelSecTitlesOnE2
|
||||
{
|
||||
get
|
||||
{
|
||||
return LazyLoad(ref _CancelSecTitlesOnE2, "@CancelSecTitlesOnE2");
|
||||
}
|
||||
}
|
||||
private LazyLoad<bool> _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<int?> _PosAdjust;
|
||||
public int? PosAdjust
|
||||
{
|
||||
get
|
||||
{
|
||||
return LazyLoad(ref _PosAdjust, "StepPrintData/@PosAdjust");
|
||||
}
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
#region TypeMenu
|
||||
[TypeConverter(typeof(ExpandableObjectConverter))]
|
||||
public class TypeMenu : vlnFormatItem
|
||||
|
Loading…
x
Reference in New Issue
Block a user