Exemple #1
0
 public ObjectGridBindAttribute(string name, string category, ObjectGridEditorField _editor, params string[] opts)
 {
     Name     = name;
     Category = category;
     editor   = _editor;
     options  = opts;
 }
 public ObjectGridBindAttribute(string name, string category, ObjectGridEditorField _editor, params string[] opts)
 {
     Name = name;
     Category = category;
     editor = _editor;
     options = opts;
 }
Exemple #3
0
 public ObjectDataRow(string _name, string _category, Type _type, object _initialValue, ObjectGridEditorField _editor, params string[] opts)
 {
     name         = _name;
     category     = _category;
     type         = _type;
     initialValue = _initialValue;
     editor       = _editor;
     options      = opts;
 }
 public ObjectDataRow(string _name, string _category, Type _type, object _initialValue, ObjectGridEditorField _editor, params string[] opts)
 {
     name = _name;
     category = _category;
     type = _type;
     initialValue = _initialValue;
     editor = _editor;
     options = opts;
 }