Getting a Node

There are a variety of ways to get references to nodes, each returning either an emxUIObjectNode or emxUICategoryNode.

If you have the node's nodeID, you can use:

var objNode = [Tree].getNode(String nodeID);

To retrieve a node by its object ID, use this:

var objNode = [Tree].findNodeByObjectID(String objectID);

This method only returns the first node in the tree with this object ID.

To retrieve a node by its name, use this code:

var objNode = [Tree].findNodeByName(String name);