Notch Notch Manual 0.9.23
 Light | Dark
GetName()

GetName()

Purpose #

Returns the name of the node.

Syntax #

string GetName();
returns the name of the object.

Example #

function Update()
{ 
    layer = Document.FindLayer("My Layer");
    node = layer.FindNode("Image 2D");
    var name = node.GetName();
}