Strings::RSet Method (String^, Int32)
Returns a right-aligned string containing the specified string adjusted to the specified length.
Assembly: Microsoft.VisualBasic (in Microsoft.VisualBasic.dll)
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)
Available since 1.1
Silverlight
Available since 2.0