This commit is contained in:
Kathy Ruffing 2011-11-21 16:45:22 +00:00
parent d1ee1cf5f1
commit 5e59fc2c34
2 changed files with 70 additions and 10 deletions

View File

@ -106,6 +106,18 @@ namespace VEPROMS.CSLA.Library
}
}
#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
[Category("Miscellaneous")]
[Description("Convert from old to new")]

View File

@ -1048,14 +1048,30 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _AllowStepEdit, "@AllowStepEdit");
}
}
private LazyLoad<int?> _CheckOffAdjustment;
public int? CheckOffAdjustment
private LazyLoad<int?> _UseCheckOffsIn;
public int? UseCheckOffsIn
{
get
{
return LazyLoad(ref _UseCheckOffsIn, "@UseCheckOffsIn");
}
}
private LazyLoad<float?> _CheckOffAdjustment;
public float? CheckOffAdjustment
{
get
{
return LazyLoad(ref _CheckOffAdjustment, "@CheckOffAdjustment");
}
}
private LazyLoad<float?> _XLocation;
public float? XLocation
{
get
{
return LazyLoad(ref _XLocation, "@XLocation");
}
}
private LazyLoad<int?> _CheckOffXtraLines;
public int? CheckOffXtraLines
{
@ -2995,6 +3011,15 @@ namespace VEPROMS.CSLA.Library
}
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
[TypeConverter(typeof(ExpandableObjectConverter))]
@ -3029,6 +3054,37 @@ namespace VEPROMS.CSLA.Library
public ImmStepHdrList(XmlNodeList xmlNodeList) : base(xmlNodeList) { }
}
#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
#region SeqTabFmtAll
#region SeqTabFmt
@ -3045,14 +3101,6 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _Index, "@Index");
}
}
private LazyLoad<int?> _LeftJustify;
public int? LeftJustify
{
get
{
return LazyLoad(ref _LeftJustify, "@LeftJustify");
}
}
private LazyLoad<string> _TabToken;
public string TabToken
{