Method | Description | |
---|---|---|
FindControl ( this parentControl, bool>.Func |
Finds the first control in the control hierarchy that matches the filter function.
|
|
FindControlById ( this parentControl, string id ) : |
Finds the control by id.
|
|
FindControls ( this parentControl, bool>.Func |
Finds all controls that are in the control hierarchy below this control.
|
|
FindControlsByPrefix ( this parentControl, string idPrefix ) : List |
Finds the controls by the ID prefix.
|
Method | Description | |
---|---|---|
FindControls ( |
Finds all controls that are in the control hierarchy below this control.
|
public static FindControl ( this parentControl, bool>.Func |
||
parentControl | this | The parent control. |
filterFunc | bool>.Func | Function that tests each control to see if it matches our criteria. |
return |
public static FindControlById ( this parentControl, string id ) : |
||
parentControl | this | The parent control. |
id | string | The id. |
return |
public static FindControls ( this parentControl, bool>.Func |
||
parentControl | this | The parent control. |
filterFunc | bool>.Func | Function that tests each control to see if it matches our criteria. |
return | List |
public static FindControlsByPrefix ( this parentControl, string idPrefix ) : List |
||
parentControl | this | The parent control. |
idPrefix | string | The id prefix. |
return | List |