This commit is contained in:
2008-08-12 11:21:19 +00:00
parent 610f408c6d
commit d0dba2aad4
14 changed files with 937 additions and 240 deletions

View File

@@ -82,6 +82,18 @@ namespace VEPROMS.CSLA.Library
}
}
#endregion
#region IsStepSection
[Category("Miscellaneous")]
[Description("Is a Step Section")]
private LazyLoad<bool> _IsStepSection;
public bool IsStepSection
{
get
{
return LazyLoad(ref _IsStepSection, "@IsStepSection");
}
}
#endregion
#region Oldtonew
[Category("Miscellaneous")]
[Description("Convert from old to new")]

View File

@@ -325,6 +325,7 @@ namespace VEPROMS.CSLA.Library
}
public vlnFormatList(XmlNodeList xmlNodeList)
{
if (xmlNodeList == null) return;
_XmlNodeList = xmlNodeList;
foreach (XmlNode xn in _XmlNodeList)
{