GetNumParents()
Purpose
#
Returns the number of parent nodes.
Syntax
#
returns an integer of the number of parent nodes.
Example
#
function Update()
{
layer = Document.FindLayer("My Layer");
node = layer.FindNode("Frame Buffer");
n = node.GetNumParents();
}