WSpace

Creates a KeyPgWstringWString of a given length filled with spaces (" ")

Syntax
	KeyPgDeclareDeclare KeyPgFunctionFunction WSpace( KeyPgByvalByVal count KeyPgAsAs KeyPgIntegerInteger ) KeyPgAsAs KeyPgWstringWString

Usage
	result = WSpace( count )

Parameters
	count
		An integer type specifying the length of the string to be created.

Return Value
	The created KeyPgWstringWString. An empty string will be returned if count <= 0.

Description
	WSpace creates a wstring (wide character string- Unicode) with the 
	specified number of spaces.

Example
	Dim a As WString * 10
	a = "x" + WSpace(3) + "x"
	Print a ' prints: x   x

Platform Differences
	* Unicode strings are not supported in the DOS port of FreeBASIC.

Dialect Differences
	* Not available in the CompilerOptlang-lang qb dialect unless referenced with the 
	  alias __Wspace.

Differences from QB
	* New to FreeBASIC

See also
	* KeyPgSpaceSpace
	* KeyPgWstringWString

