Tab() |
Previous Next |
TAB([<Column>], [<Row>])
|
Part
|
Description
|
<Column>
|
Optional. Sets the text cursor to the specified column. If omitted, the
cursor column is not changed
|
<Row>
|
Optional. Sets the text cursor to the specified row. If omitted, the
cursor row is not changed.
|
a$ = "Hello"
b$ = "World"
PRINT a$ & TAB(10) & b$ ' sets the cursor to column 10
PRINT a$ & TAB(,3) & b$ ' sets the cursor to row 3
|