Click or drag to resize

BrowseItemExtensionsFindChild Method

Finds a child item with the given name.

Namespace: Demo3D.PLC.Comms
Assembly: PLC (in PLC.dll) Version: 19.00.00
Syntax
C#
public static IBrowseItem? FindChild(
	this IBrowseItem branch,
	string name
)

Parameters

branch  IBrowseItem
The browseItem to search.
name  String
The name of the child to find.

Return Value

IBrowseItem
The browse item, or null if not found.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IBrowseItem. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also