DeleteNode()
Updated: 4 Dec 2023
Updated: 4 Dec 2023
Deletes the node. If the node is deleted, it returns a true, otherwise false.
bool DeleteNode();
returns true if successful or false if not.
function Update()
{
layer = Document.GetLayer(0);
node = layer.FindNode("myNode");
node.DeleteNode();
}