Added a necesssary Property (IsSubStep) for ItemInfo that is used for copy/paste,

This commit is contained in:
Rich 2014-08-28 14:05:16 +00:00
parent d7a7c13b72
commit 6a8cad9899

View File

@ -1643,6 +1643,10 @@ namespace VEPROMS.CSLA.Library
return (int)_Ordinal;
}
}
public bool IsSubStep
{
get { return IsStep && !IsHigh && !IsTable && !IsFigure; }
}
public string CslaType
{ get { return this.GetType().FullName; } }
public override string ToString()