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$ Function, Mid$ Function, Right$ Function, Space$ Function

Tab$ Function Example

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