property title

(r/w) string title;

Typ

Zugriff

This property sets or gets the title of the current window. (Window Text) This is the text that shows up in the title bar as well as the taskbar button.
var wndBox = scene.rootBox;
if (wndBox)
{
    wndBox.title = "My Title";
}