public AutomatorPropertyEventArgs(AutomatorPropertyAttributeType Type, ITypeDescriptorContext Context, IServiceProvider Provider, object Value)
        {
            this.Handled = false;
            this.Type    = Type;

            this.Context  = Context;
            this.Provider = Provider;
            this.Value    = Value;
        }
Exemple #2
0
 public AutomatorPropertyEditorAttribute(AutomatorPropertyAttributeType Type)
 {
     this.Type = Type;
 }