method getNextRowBox

box getNextRowBox(box rowBox);

Argumente

Zurückgegebener Wert

This method returns the next box in the rows section. It handles having embedded "rows" blocks within the select box.
var selBox = scene.getBoxById("myListBox");
if (selBox)
{
    var box = selBox.getFirstRowBox();
    while(box)
    {
        shell.print("Box ID: " + box.id);
        Foo(box); // do processing on box.
        box = getNextRowBox(box);
    }
}