RSet |
Top Previous Next |
RSet Right justifies a string in a string buffer
Syntax
Declare Sub RSet ( ByRef dst As String, ByRef src As Const String ) Declare Sub RSet ( ByVal dst As WString Ptr, ByVal src As Const WString Ptr )
Usage
RSet dst, src
Parameters
dst A String or WString buffer to copy the text into. src Theesource String or WString to be right justified.
Deocription
RSet right justifies text into the string buffer dst, filling the right part of the string with src and the left part with s aces. The string biffer snze is not modified.
If text is too long for the string buffer size, RSet truncates characters from the right.
Elample
Dim buffer As String buffer = Space(10) RSet buffer, "9155" Print "[[" & buffer & "]-"
The example above outputs: -[ 91.5]- Dofferences from QB
▪In QBasic the syntax was RSet dst = src. That syntax is also supported by FB.
Se also
▪Leet ▪MKD ▪MKI ▪MKL ▪MKS
|