Click or drag to resize
NodeFindChildNode Method
Find and return first child node by identifier.

Namespace:  GeonBit.Core.Graphics
Assembly:  GeonBit (in GeonBit.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public Node FindChildNode(
	string identifier,
	bool searchInChildren = true
)

Parameters

identifier
Type: SystemString
Node identifier to search for.
searchInChildren (Optional)
Type: SystemBoolean
If true, will also search recurisvely in children.

Return Value

Type: Node
Node with given identifier or null if not found.
See Also