Difference between revisions of "MC-Basic:SPACE$"
(Created page with '{{MC-Basic |SHORT FORM= |SYNTAX= SPACE$(''<number>'') |AVAILABILITY= All versions |DESCRIPTION= SPACE$ generates a string consisting of the specified number of blank spaces. …') |
m (1 revision) |
(No difference)
| |
Revision as of 16:10, 13 December 2010
SPACE$ generates a string consisting of the specified number of blank spaces.
Syntax
SPACE$(<number>)
Availability
All versions
Type
<return value>: String
<number>: Long
Range
<return value>: String
<number>: 0 to MaxLong
Scope
Configuration, Task or Terminal
Limitations
Read-Only
Examples
Test = “First”;Space$(10);”Next”
First Next