Space (function)

<< Click to Display Table of Contents >>

Space (function)

Space(n)

Creates a string consisting of n space characters.

n accepts values between 0 and 32767.

See also: String

Example:

Sub Main

 MsgBox "Mind the..." & Space(20) & "...gap!"

End Sub