Example #1
0
 public static T FindControl <T>(Control seed, string id, bool traverse) where T : Control
 {
     return(ControlUtils.FindControl <T>(seed, id, traverse, (Control)null));
 }
Example #2
0
 public static T FindControl <T>(Control seed) where T : Control
 {
     return(ControlUtils.FindControl(seed, typeof(T)) as T);
 }
Example #3
0
 public static Control FindControl(Control seed, string id, bool traverse)
 {
     return(ControlUtils.FindControl(seed, id, traverse, (Control)null));
 }
Example #4
0
 public static List <T> FindChildControls <T>(Control seed) where T : Control
 {
     return(ControlUtils.FindChildControls <T>(seed, false));
 }
Example #5
0
 public static Control FindChildControl(Control seed, Type type)
 {
     return(ControlUtils.FindChildControl(seed, type, false));
 }
Example #6
0
 public static Control FindChildControl(Control seed, Type type, bool shallow)
 {
     return(ControlUtils.FindChildControl(seed, type.FullName, shallow));
 }
Example #7
0
 public static T FindChildControl <T>(Control seed, bool shallow) where T : Control
 {
     return(ControlUtils.FindChildControl(seed, typeof(T), shallow) as T);
 }
Example #8
0
 public static Control FindControl(Control seed, string id)
 {
     return(ControlUtils.FindControl(seed, id, true, (Control)null));
 }
Example #9
0
 public static Control FindControlByTypeName(Control seed, string typeFullName)
 {
     return(ControlUtils.FindControlByTypeName(seed, typeFullName, false, true, (Control)null));
 }
Example #10
0
 public static Control FindControl(Control seed, Type type, bool shallow)
 {
     return(ControlUtils.FindControlByTypeName(seed, type.FullName, shallow, true, (Control)null));
 }
Example #11
0
 public static T FindControl <T>(Control seed, string id) where T : Control
 {
     return(ControlUtils.FindControl <T>(seed, id, true, null));
 }