Search
CompositeNode.FindComponent Method
See Also
 





Returns the child component with the specified name or null (Nothing in Visual Basic), if the component was not found.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public ComponentBase FindComponent (
    string name
)

Visual Basic  Copy Code

Public Function FindComponent( _
    name As String _
) As ComponentBase

 Parameters

name
The name of the component to search for.

 Return Value

An instance of the ComponentBase class identifying the found component or null (Nothing in Visual Basic).

 Remarks

This method is useful for obtaining a references to components defined in XML.

 See Also