public BaseItem Apply(object config)
 {
     return((BaseItem)BaseControl.Apply(this, config));
 }
Beispiel #2
0
 public static object Apply(object to, object from)
 {
     return(BaseControl.Apply(to, from, true));
 }
Beispiel #3
0
 public BaseControl Apply(object from, bool ignoreDefaultValues)
 {
     return((BaseControl)BaseControl.Apply(this, from, ignoreDefaultValues));
 }
Beispiel #4
0
 public BaseControl Apply(object from)
 {
     return((BaseControl)BaseControl.Apply(this, from, true));
 }
Beispiel #5
0
 public object Apply(IApply config)
 {
     return(BaseControl.Apply(this, config));
 }