RSet$ Function

Returns the specified string with leading spaces added up to the specified length.

Syntax
RSet$ (string, length)

Parameters

string
Specify a string expression.
length
Specify an integer or expression indicating the length of the returned string.

Return Values
Specified string with leading spaces appended.

See Also
LSet$, Space$

Rset$$ Function Usage Example

temp$ = "123"
temp$ = RSet$(temp$, 10)  ' temp$ = "       123"