Tab$ Function
Returns a string containing the specified number of tabs characters.
Syntax
Tab$(number)
Parameters
- count
- Specify the number of tabs as an integer value.
Return Values
String containing tab characters.
Description
Tab$ returns a string containing the specified number of tabs.
See Also
Left$, Mid$, Right$, Space$
Tab$ Function Example
Integer i
Print "X", Tab$(1), "Y"
Print
For i = 1 To 10
Print "x", Tab$(i), "y"
Next i
← T Tan Function →