property dock

(r/w) string dock;

Typ

Zugriff

This property sets and gets the flag to determine which edge of the screen the window is docked against. You may set this property to force the window to dock to a specified edge. Valid values are:
var wndBox = scene.rootBox;
if (wndBox)
{
    if (wndBox.dock != "bottom")
        wndBox.dock = "top";
}