method bringToFront

void bringToFront(bool force);

Argumente

Zurückgegebener Wert

This method brings this window to the top of the Windows Z-Order. After calling this method the window will be in front and in focus.
var wndBox = scene.rootBox;
if (wndBox)
{
    wndBox.bringToFront(false);
}