Spaces (Reserved Word)
Adds the specified number of blank spaces into the line of text output using Print
Spaces(Cnt);
Cnt is the numeric expression indicating the number of spaces to be inserted.
Example
Print("Close" + Spaces(5) + NumToStr(Close, 3));
The above example results in five blank spaces between the string "Close" and the closing price.