Spaces Procedure

Returns a string of lCount spaces.

Syntax

[ s = ] Spaces ( lCount )

The Spaces procedure syntax has the following parts:

Name

Type

Description

s

BString

Result string

lCount

Val Long

Number of spaces

Comments

lCount must be an integer within the range of 0 to 32766.

Example

s = "AT" + Spaces(5) + "Easy"

! In this example: s = "AT     Easy"

See Also

Dupl, Len