Window.title readwrite


Get or set the Window title as a string.

Example

--! luart-extensions import ui -- create a simple window local win = ui.Window("Temporary title", 150, 90) -- change Window title win.title = "Window.title property sample" -- shows the Window win:show() -- update user interface repeat ui.update() until not win.visible