property rowCount

(r/o) int32 rowCount;

Typ

Zugriff

This property returns this property to determine how many rows exist within the select box.
var selBox = scene.getBoxById("myListBox");
if (selBox)
{
    shell.print("There are currently " + selBox.rowCount + " rows in this container.");
}