RSet Statement
Justifies the string by the right edge of the string variable.
Syntax
The RSet statement syntax has these parts:
Элемент |
Описание |
stringvar |
Required. The name of the string variable. |
string |
Required. The string expression to be justified
by the right edge of the string variable. |
Example
In this example the RSet statement is used to justify the string by the right
edge of the string variable.
Dim MyString
MyString = "0123456789" ' Initializes the string.
Rset MyString = "Right->" ' MyString contains " Right->". Trace "|"&MyString&"|" |