TAB
- Source: https://www.freebasic.net/wiki/wikka.php?wakka=KeyPgTab
- Last revised: 2016-02-10
Sets the column when writing to screen or file
Syntax
` Tab( col_num )
`
Usage
` Print Tab( column ) [(, | 😉] ...
`
Parameters
column
1-based column number to move to
Description
Tab will move the cursor to given column number when Printing to screen or to a file. Character cells skipped over between the old and new cursor positions are left unchanged.
If the current column is greater than column, then Tab will move the cursor to the requested column number on the next line. If the current column is equal to column, then the cursor will not move anywhere.
Examples
start GeSHi
vb
'' Using Print with Tab to justify text in a table
Dim As String A1, B1, A2, B2
A1 = "Jane"
B1 = "Doe"
A2 = "Bob"
B2 = "Smith"
Print "FIRST NAME"; Tab(35); "LAST NAME"
Print "----------"; Tab(35); "----------"
Print A1; Tab(35); B1
Print A2; Tab(35); B2end GeSHi
The output would look like:
FIRST NAME LAST NAME
---------- ----------
Jane Doe
Bob SmithDifferences from QB
- In QBASIC, spaces were printed in the gap, while in FreeBASIC, the characters are just skipped over and left untouched.
See also
SpcLocatePosPrint?
Back to DocToc