To meet your needs, we constantly work to improve Querix products.
This means that Lycia documentation is developing as well.
In case you have found a certain dissonance between the provided information and the actual behavior of Lycia 3 and/or your applications, please, let us know about this via documentation@querix.com so that we can introduce the necessary changes to our documentation.
Thank you for your attention and cooperation.
The SetText() method is used to specify the window title. It requires a single argument of the character data type which is represents the new title does not return anything.
CALL wo.SetText("My Window")
Here is an example of a ui.Window object manipulation: a window is got by name and its title is changed:
MAIN
DEFINE wo ui.Window
OPEN WINDOW orders_w WITH FORM "orders" ATTRIBUTE(BORDER)
LET wo = ui.Window.forName("orders_w")
CALL wo.setText("Order list")
MENU "mmenu"
COMMAND "Back" EXIT MENU
END MENU
CLOSE WINDOW orders_w
END MAIN