Positions the cursor positioning in either the vertical or horizontal planes.
HTab column
VTab row
column, row:integer expression
Places the cursor in the column or row specified in respective integer variable.
OpenW # 1
Print AT(1, 1); "Hello GFA"
HTab 20
VTab 20
Print "Hello GFA"
Prints Hello GFA from the first column on the first line, and then prints the same string again only from the 20th row and 20th column.
The same:
Print AT(20, 20); "Hello GFA"
{Created by Sjouke Hamstra; Last updated: 01/03/2017 by James Gaite}