IUANode.Find(browseName)
Returns an IUANode
C# object. The returned object corresponds to the first child node found in the node children on which the method is invoked. The returned object name corresponds to the argument.
IUANode Find(string browseName);
Arguments
browseName
(string)- The
BrowseName
of the node to find.
Returns
IUANode
- A C# object that corresponds to the object found.
Example
The following example shows a returned C# object that corresponds to the first
Speed
node child of the Model
node:
var model = Project.Current.Get("Model");
var speed = model.Find("Speed");