This commit is contained in:
parent
d1ee1cf5f1
commit
5e59fc2c34
@ -106,6 +106,18 @@ namespace VEPROMS.CSLA.Library
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
#region UseCheckOffs
|
||||||
|
[Category("Miscellaneous")]
|
||||||
|
[Description("Section Uses MetaSection ColSByLevel")]
|
||||||
|
private LazyLoad<bool> _UseColSByLevel;
|
||||||
|
public bool UseColSByLevel
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return LazyLoad(ref _UseColSByLevel, "@UseColSByLevel");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endregion
|
||||||
#region Oldtonew
|
#region Oldtonew
|
||||||
[Category("Miscellaneous")]
|
[Category("Miscellaneous")]
|
||||||
[Description("Convert from old to new")]
|
[Description("Convert from old to new")]
|
||||||
|
@ -1048,14 +1048,30 @@ namespace VEPROMS.CSLA.Library
|
|||||||
return LazyLoad(ref _AllowStepEdit, "@AllowStepEdit");
|
return LazyLoad(ref _AllowStepEdit, "@AllowStepEdit");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
private LazyLoad<int?> _CheckOffAdjustment;
|
private LazyLoad<int?> _UseCheckOffsIn;
|
||||||
public int? CheckOffAdjustment
|
public int? UseCheckOffsIn
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return LazyLoad(ref _UseCheckOffsIn, "@UseCheckOffsIn");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
private LazyLoad<float?> _CheckOffAdjustment;
|
||||||
|
public float? CheckOffAdjustment
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
return LazyLoad(ref _CheckOffAdjustment, "@CheckOffAdjustment");
|
return LazyLoad(ref _CheckOffAdjustment, "@CheckOffAdjustment");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
private LazyLoad<float?> _XLocation;
|
||||||
|
public float? XLocation
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return LazyLoad(ref _XLocation, "@XLocation");
|
||||||
|
}
|
||||||
|
}
|
||||||
private LazyLoad<int?> _CheckOffXtraLines;
|
private LazyLoad<int?> _CheckOffXtraLines;
|
||||||
public int? CheckOffXtraLines
|
public int? CheckOffXtraLines
|
||||||
{
|
{
|
||||||
@ -2995,6 +3011,15 @@ namespace VEPROMS.CSLA.Library
|
|||||||
}
|
}
|
||||||
set { _ImmStepHdrList = value; }
|
set { _ImmStepHdrList = value; }
|
||||||
}
|
}
|
||||||
|
private LeftJustifyList _LeftJustifyList;
|
||||||
|
public LeftJustifyList LeftJustifyList
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return (_LeftJustifyList == null) ? _LeftJustifyList = new LeftJustifyList(SelectNodes("LeftJustifyList/LeftJustify")) : _LeftJustifyList;
|
||||||
|
}
|
||||||
|
set { _LeftJustifyList = value; }
|
||||||
|
}
|
||||||
}
|
}
|
||||||
#region ImmStepHdr
|
#region ImmStepHdr
|
||||||
[TypeConverter(typeof(ExpandableObjectConverter))]
|
[TypeConverter(typeof(ExpandableObjectConverter))]
|
||||||
@ -3029,6 +3054,37 @@ namespace VEPROMS.CSLA.Library
|
|||||||
public ImmStepHdrList(XmlNodeList xmlNodeList) : base(xmlNodeList) { }
|
public ImmStepHdrList(XmlNodeList xmlNodeList) : base(xmlNodeList) { }
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
#region LeftJustifyList
|
||||||
|
[TypeConverter(typeof(vlnListConverter<LeftJustifyList, LeftJustify>))]
|
||||||
|
public class LeftJustifyList : vlnFormatList<LeftJustify>
|
||||||
|
{
|
||||||
|
public LeftJustifyList(XmlNodeList xmlNodeList) : base(xmlNodeList) { }
|
||||||
|
}
|
||||||
|
#endregion
|
||||||
|
#region LeftJustify
|
||||||
|
[TypeConverter(typeof(ExpandableObjectConverter))]
|
||||||
|
public class LeftJustify : vlnFormatItem, IVlnIndexedFormatItem
|
||||||
|
{
|
||||||
|
public LeftJustify(XmlNode xmlNode) : base(xmlNode) { }
|
||||||
|
public LeftJustify() : base() { }
|
||||||
|
private LazyLoad<int?> _Index;
|
||||||
|
public int? Index
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return LazyLoad(ref _Index, "@Index");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
private LazyLoad<float?> _Size;
|
||||||
|
public float? Size
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return LazyLoad(ref _Size, "@Size");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endregion
|
||||||
#endregion
|
#endregion
|
||||||
#region SeqTabFmtAll
|
#region SeqTabFmtAll
|
||||||
#region SeqTabFmt
|
#region SeqTabFmt
|
||||||
@ -3045,14 +3101,6 @@ namespace VEPROMS.CSLA.Library
|
|||||||
return LazyLoad(ref _Index, "@Index");
|
return LazyLoad(ref _Index, "@Index");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
private LazyLoad<int?> _LeftJustify;
|
|
||||||
public int? LeftJustify
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
return LazyLoad(ref _LeftJustify, "@LeftJustify");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
private LazyLoad<string> _TabToken;
|
private LazyLoad<string> _TabToken;
|
||||||
public string TabToken
|
public string TabToken
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user