Strings.RSet Method

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Returns a right-aligned string containing the specified string adjusted to the specified length.

Namespace:  Microsoft.VisualBasic
Assembly:  Microsoft.VisualBasic (in Microsoft.VisualBasic.dll)

Syntax

'Declaration
Public Shared Function RSet ( _
    Source As String, _
    Length As Integer _
) As String
public static string RSet(
    string Source,
    int Length
)

Parameters

  • Source
    Type: System.String
    Required. String expression. Name of string variable.
  • Length
    Type: System.Int32
    Required. Integer expression. Length of returned string.

Return Value

Type: System.String
Returns a right-aligned string containing the specified string adjusted to the specified length.

Remarks

If Source is longer than Length, RSet places only the leftmost characters, up to the length of Source, in the returned string. If the specified string is shorter than the specified length, spaces are added to the left end of the string to produce the appropriate length. If the specified string is longer than the specified length, it is shortened to the specified length.

Examples

This example demonstrates the use of the RSet function.

Dim TestString As String = "Right"
' Returns "      Right"
Dim rString As String = RSet(TestString, 11)

Version Information

Silverlight

Supported in: 5, 4, 3

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.