Window.title read/write property


Get or set the Window title as a string.

Example

local ui = require "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