Difference between revisions of "Spaces"

From MultiCharts
Jump to navigation Jump to search
(Created page with "Returns a string expression consisting of a specified number of spaces. ==== Usage ==== <syntaxhighlight>Spaces(Num)</syntaxhighlight> Where: Num - a numerical expre...")
(No difference)

Revision as of 14:38, 25 January 2012

Returns a string expression consisting of a specified number of spaces.

Usage

Spaces(Num)

Where: Num - a numerical expression specifying the number of spaces

Example

The example inserts two blank spaces between the letters "a" and "b":


Print("a"+Spaces(2)+"b");