ShowTopLeftAt() Function
- Last UpdatedFeb 21, 2017
- 1 minute read
Opens an InTouch window at a specified position. Can also be used to move an open window.
Syntax
ShowTopLeftAt (windowname, xpos, ypos)
Parameters
The name of the window to be opened or moved.
xpos
The horizontal position in pixels that the window left edge is to be moved to. A literal value, analog tagname, or numeric expression.
ypos
The vertical position in pixels that the window top edge is to be moved to. A literal value, analog tagname, or numeric expression.
Example(s)
This script opens the window Main so that its top left corner is positioned at x:450, y:130.
ShowTopLeftAt("Main",450,130);