History
Tab
Home
•
Help
•
Customization Tools
•
FCAS
•
Language Reference
•
Tab
Purpose
Returns a string containing the Tab character.
Syntax
Tab
Example
Sub Main()
Dim s As String
s = "apple" & Tab & "orange" & Tab & "grape"
Print s 'creates a tab-delimited list of strings and displays them to output window
End Sub