Tab$ Function

Returns a string of the specified number of single-byte tab characters.

Syntax
Tab$(number)

Parameters

number
Specify the number of single-byte tabs as an integer value.

Return Values
String containing single-byte tab characters.

Description
Returns a string of the specified number of single-byte tab characters.

See Also
Left$, Mid$, Right$, Space$

Tab$ Function Example

Print "X", Tab$(1), "Y"
Print
For i = 1 To 10
    Print x(i), Tab$(1), y(i)
Next i