Method | Description | |
---|---|---|
FindControlRecursive ( |
Finds the first control that matches the id, rescursively.
|
|
GetFieldOrProperty ( object target, string name ) : object |
Gets the field or property of the specified target.
|
|
SetFieldOrProperty ( object target, string name, object value ) : void |
Sets the field or property of the specified target.
|
public static FindControlRecursive ( |
||
rootControl | The root control. | |
controlId | string | The id of the control to search. |
return |
public static GetFieldOrProperty ( object target, string name ) : object | ||
target | object | The target to act on. |
name | string | The name of the field or property. |
return | object |
public static SetFieldOrProperty ( object target, string name, object value ) : void | ||
target | object | The target to act on. |
name | string | The name of the field or property. |
value | object | The value to set. |
return | void |