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.
This method is used with the variable of the WINDOW data type and moves the window associated with the variable to the new position specified by its arguments:
CALL win_var.Move(8,15)
This method accepts two arguments. Y stands for the line and x stands for the column to which the window will be moved, these are both literal integers or integer variables.
Example program:
MAIN
DEFINE win ui.Window
OPEN WINDOW w WITH 20 ROWS, 40 COLUMNS attribute (border)
LET win = ui.Window.ForName("w")
MENU
ON ACTION 'Move to 5,5'
CALL win.Move(5,5)
ON ACTION 'Exit'
EXIT MENU
END MENU
END MAIN