property active

(r/w) bool active;

Typ

Zugriff

This property sets and gets if the window is currently active (currently focused). Setting this flag will cause focus to be lost from whatever window currently has it.
var wndBox = scene.rootBox;
if (wndBox)
{
    wndBox.active = true;
}