locate()

テキストカーソル位置を(x,y)へ移動する。

書式x:
locate( x , y )

例:
for y = 1 to 20
    x= rnd(50)
    locate( x, y )
    printS( "current coordinate are x=" & x & " y=" & y )
next
waitKey