RSet

Right justifies a string in a string buffer

Syntax
	KeyPgDeclareDeclare KeyPgSubSub RSet ( KeyPgByrefByRef dst KeyPgAsAs KeyPgStringString, KeyPgByrefByRef src KeyPgAsAs KeyPgConstQualifierConst KeyPgStringString )
	KeyPgDeclareDeclare KeyPgSubSub RSet ( KeyPgByvalByVal dst KeyPgAsAs KeyPgWstringWString KeyPgPtrPtr, KeyPgByvalByVal src KeyPgAsAs KeyPgConstQualifierConst KeyPgWstringWString 
	KeyPgPtrPtr )

Usage
	RSet dst, src

Parameters
	dst
		A KeyPgStringString or KeyPgWstringWString buffer to copy the text into.
	src
		The source KeyPgStringString or KeyPgWstringWString to be right justified.

Description
	RSet right justifies text into the string buffer dst, filling the right 
	part of the string with src and the left part with spaces.  The string 
	buffer size is not modified.

	If text is too long for the string buffer size, RSet truncates 
	characters from the right.

Example
	Dim buffer As String
	buffer = Space(10)
	RSet buffer, "91.5"
	Print "-[" & buffer & "]-"

The example above outputs:
	-[      91.5]-

Differences from QB
	* In QBasic the syntax was RSet dst = src. That syntax is also 
	  supported by FB.

See also
	* KeyPgLsetLSet
	* KeyPgSpaceSpace
	* KeyPgPutfileioPut (File I/O)
	* KeyPgMkdMKD
	* KeyPgMkiMKI
	* KeyPgMklMKL
	* KeyPgMksMKS

   
