property alwaysOnTop

(r/w) bool alwaysOnTop;

Typ

Zugriff

This property sets and gets the flag that specifies whether this window should always remain at the top of the windows Z-order. When in this state no other windows on the system will be able to be moved over yours regardless of whether or not they are the currently active window.
var wndBox = scene.rootBox;
if (wndBox)
{
    wndBox.alwaysOnTop = true;
}