Difference between revisions of "MC-Basic:SPACE$"
m (Text replace - "Read-Only" to "Read only") |
m (Text replace - "''<number>''" to "<''number''>") |
||
| Line 4: | Line 4: | ||
|SYNTAX= | |SYNTAX= | ||
| − | SPACE$('' | + | SPACE$(<''number''>) |
|AVAILABILITY= | |AVAILABILITY= | ||
| Line 14: | Line 14: | ||
|TYPE= | |TYPE= | ||
''<return value>'': String<br> | ''<return value>'': String<br> | ||
| − | '' | + | <''number''>: Long |
|RANGE= | |RANGE= | ||
''<return value>'': String<br> | ''<return value>'': String<br> | ||
| − | '' | + | <''number''>: 0 to MaxLong |
|UNITS= | |UNITS= | ||
Revision as of 09:32, 20 March 2014
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