Purpose
Returns a string containing a number of space characters indicated by the argument.
Syntax
Space (NumericExpression)
NumericExpression |
Any valid numeric expression. |
Example
Sub Main()
Dim MyStringVariable As String
MyStringVariable = Space(15) ' returns a string with 15 spaces
'to the variable MyStringVariable
Print MyStringVariable
|