GetString()
Updated: 4 Dec 2023
Updated: 4 Dec 2023
Retrieves the value of a string property within a node.
String GetString(String property_name);
property_name | the property within the node. Starts with <GroupName>.<Property> e.g. 'Transform.Position X' |
function Update()
{
layer = Document.FindLayer("My Layer");
node = layer.FindNode("MyTextNode");
value = node.GetString("Attributes.Text String");
}