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: 15.0.2.11458
Syntax
C#
public static IBrowseItem? FindChild(
	this IBrowseItem branch,
	string name
)

Parameters

branch
Type: Demo3D.PLC.CommsIBrowseItem
The browseItem to search.
name
Type: SystemString
The name of the child to find.

Return Value

Type: 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