private DspParameterDescription(string name, string label, string description, DspParameterType type)
     : this()
 {
     Type = type;
     Name = name;
     Label = label;
     Description = description;
 }
Example #2
0
 private DspParameterDescription(string name, string label, string description, DspParameterType type)
     : this()
 {
     Type        = type;
     Name        = name;
     Label       = label;
     Description = description;
 }
 public DspParameterEventArgs(int index, DspParameterType type, object value)
 {
     Index     = index;
     ValueType = type;
     Value     = value;
 }