HTab, VTab Commands

Purpose

Positions the cursor positioning in either the vertical or horizontal planes.

Syntax

HTab column

VTab row

column, row:integer expression

Description

Places the cursor in the column or row specified in respective integer variable.

Example

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"

See Also

Locate, PrintAt, Tab

{Created by Sjouke Hamstra; Last updated: 01/03/2017 by James Gaite}