Search
ComponentBase.Find Method
See Also
 





Returns the component with the specified name within the hierarchy defined by the current component.

Namespace: MindFusion.Diagramming.Components
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public ComponentBase Find (
    string name
)

Visual Basic  Copy Code

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

 Parameters

name

The name of the component to search for.

 Return Value

The found component, or null (Nothing in Visual Basic), if no component matches. The search is case-sensitive.

 See Also