GetLayerNames

Get all layer names defined for the current project.

Function

string[] GetLayerNames()

Return Value

Returns an array of strings containing all of the layer names.

Examples

Prints all layer names to the console.

let layers = SYM3.GetLayerNames();
for (let i = 0; i < layers.length; ++i)
{
    console.log(" Layer = " + layers[i]);
}