property sortColumn

(r/w) int32 sortColumn;

Typ

Zugriff

This property set or gets the column index that is used for sorting operations.
var selBox = scene.getBoxById("myListBox");
if (selBox)
{
    selBox.sortColumn = 1;
    selBox.sortByValue(true, false);
}