Notch Notch Manual 0.9.23
 Light | Dark
GetName()

GetName()

Purpose #

Returns the name of the layer.

Syntax #

String GetName();
returns the name of the layer.

Example #

function Update()
{ 
    layer = Document.FindLayer("My Layer");
    var name = layer.GetName();
}