Creates and returns a String consisting of nothing but x white spaces. This function is useful if you want to add a specia amount of white spaces for instance to a string.
Space( x )
x | A number defining how many spaces to put into the string. |
---|
Returns a string consisting of x white spaces
Space(2) // Returns " " "Crystal" + Space(1)+ "Clear" // Returns the String "Crystal Clear".