property floating

(r/w) bool floating;

Typ

Zugriff

This property sets and gets the flag to make give this window a "tool window" style. This window will be floating window that does not have a taskbar icon or a place in the ALT-TAB window. This property can be read back to determine if this window has the floating style.
var wndBox = scene.rootBox;
if (wndBox)
{
    wndBox.floating = false;
}