Returns a string of lCount spaces.
[ s = ] Spaces ( lCount )
The Spaces procedure syntax has the following parts:
Name |
Type |
Description |
s |
BString |
Result string |
lCount |
Val Long |
Number of spaces |
lCount must be an integer within the range of 0 to 32766.
s = "AT" + Spaces(5) + "Easy"
! In this example: s = "AT Easy"