SimpleWindow.title

Set the window title, which is visible on the window manager title bar, operating system taskbar, etc.

More...
  1. string title [@property setter]
    class SimpleWindow
    @property
    void
    title
    (
    string title
    )
  2. string title [@property getter]

Detailed Description

auto window = new SimpleWindow(100, 100, "First title");
window.title = "A new title";

You may call this function at any time.

Meta