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