| title | RSet statement (VBA) | |
|---|---|---|
| keywords | vblr6.chm1009009 | |
| f1_keywords |
|
|
| ms.assetid | 07a4f730-ef85-cbeb-30ac-ea51d161f27f | |
| ms.date | 12/03/2018 | |
| ms.localizationpriority | medium |
Right aligns a string within a string variable.
RSet stringvar = string
The RSet statement syntax has these parts.
| Part | Description |
|---|---|
| stringvar | Required. Name of string variable. |
| string | Required. String expression to be right-aligned within stringvar. |
If stringvar is longer than string, RSet replaces any leftover characters in stringvar with spaces, back to its beginning.
Note
RSet can't be used with user-defined types.
This example uses the RSet statement to right align a string within a string variable.
Dim MyString
MyString = "0123456789" ' Initialize string.
Rset MyString = "Right->" ' MyString contains " Right->".
[!includeSupport and feedback]