public CustomPropertyEventArgs(CustomProperty p, object v) { m_Property = p; m_Value = v; }
public CustomPropertyDescriptor(CustomProperty item, PropertySheet owner, string name, Attribute[] attributes) : base(name, attributes) { m_Owner = owner; m_Property = item; }
// Add a property to the sheet public void AddProperty(CustomProperty prop) { m_Properties.Add(prop); }