/// <summary>
 /// Initializes a new instance of the PropertyTable class.
 /// </summary>
 public PropertyTable(object oTag, string strObjName, SecurityManager oSecurity)
 {
     propValues = new Hashtable();
     this.Tag = oTag;
     this.ObjectName = strObjName;
     this.SecurityMgr = oSecurity;
 }
 /// <summary>
 /// Initializes a new instance of the PropertyBag class.
 /// </summary>
 public PropertyBag()
 {
     defaultProperty = null;
     properties = new PropertySpecCollection(this);
     m_Security = null;
 }
 /// <summary>
 /// Initializes a new instance of the PropertyBag class.
 /// </summary>
 public PropertyBag(object oTag, string strObjName, SecurityManager oSecurity)
 {
     defaultProperty = null;
     properties = new PropertySpecCollection(this);
     this.Tag = oTag;
     this.ObjectName = strObjName;
     this.SecurityMgr = oSecurity;
 }
 public AnimatMenuStrip(string strToolName, SecurityManager security)
 {
     m_strToolName = strToolName;
     m_Security = security;
 }