property id

(r/w) string id;

Typ

Zugriff

This property is used to get and set the id for a command group.
function onSample()
{
    var commandGroup = scene.getCommandGroupById("myCmdGrp");
    if (commandGroup)
    {
        commandGroup.id = "myNewCmdGrp";
    }
}