Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

Strings::RSet Method (String^, Int32)

 

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

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

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.

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.

This example demonstrates the use of the RSet function.

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

.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Return to top
Show:
© 2017 Microsoft