property update

(r/w) string update;

Typ

Zugriff

This property is used to get and set the update for a command.
function onSample()
{
    var commandGroup = scene.getCommandGroupById("myCmdGrpId");
    if (commandGroup)
    {
        var command = commandGroup.getCommandById("myCmdId");
        if (command)
        {
            command.update = "myNewUpdateMethod();";
        }
    }
}