Added "EditorialChange" property to the TabControl object.

This commit is contained in:
Rich 2014-06-20 14:07:45 +00:00
parent c5bed5fe5a
commit fc0b4424ae

View File

@ -109,6 +109,16 @@ namespace Volian.Controls.Library
get { return _ChgId; }
set { _ChgId = value; }
}
public bool EditorialChange
{
get
{
if (_ChgId == null) return true;
if (_ChgId == "") return true;
if (_ChgId.ToUpper() == "EC") return true;
return false;
}
}
#endregion
#region Events
/// <summary>