GetProductNames

Get all product names for the current project.

Function

string[] GetProductNames()

Return Value

Returns an array of strings containing product names.

Examples

Prints all product names in current rendering to the console.

let list = SYM3.GetProductNames();
for (let i = 0; i < list.length; ++i)
{
    console.log(" Product = " + list[i]);
}