Space$ Function

Syntax              Space[$](Len)

Group                String

Description       Return the string Len spaces long.

Parameter         Description

Len                      Create a string this many spaces long.

See Also            String$( ).

Example            '#Language "WWB-COM"
Sub Main
    Debug.Print "."; Space$(3); "." '".   ."
EndSub