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
Print "X", Tab$(1), "Y"
Print
For i = 1 To 10
Print x(i), Tab$(1), y(i)
Next i
← T Tan Function →