ContainerFindChildT Method (String) |
Finds a child control in this container or any of its child containers with the specified id
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public T FindChild<T>(
string id = null
)
where T : Control
Public Function FindChild(Of T As Control) (
Optional id As String = Nothing
) As T
member FindChild :
?id : string
(* Defaults:
let _id = defaultArg id null
*)
-> 'T when 'T : Control
Parameters
- id (Optional)
- Type: SystemString
Optional identifier of the control to find that matches the ID.
Type Parameters
- T
- The type of control to find.
Return Value
Type:
TThe child control if found, or null if not.
See Also