method command

void command();

Argumente

Zurückgegebener Wert

This method executes the on:command event handler for this box.
function AutomateTask()
{
    var loadBtn = scene.getBoxById("loadDataBtn");
    if (loadBtn)
    {
        loadBtn.command();
    }
}