PadRight()

Namespace ›› System ›› MfString ›› Methods ››
Parent Previous Next

PadRight()

OutputVar := instance.PadRight(totalWidth)
OutputVar := instance.PadRight(totalWidth, paddingChar)
OutputVar := MfString.PadRight(str, totalWidth)
OutputVar := MfString.PadRight(str, totalWidth, paddingChar)

PadRight(totalWidth)

Returns a new MfString that left-aligns the characters in this instance of MfString by padding them with spaces on the right, for a specified total length.

PadRight(totalWidth, paddingChar)

Returns a new MfString that left-aligns the characters in this instance of MfString by padding them on the right with a specified character, for a specified total length.

MfString.PadRight(str, totalWidth)

Static Method.
Returns a new MfString that left-aligns the characters in the str of MfString by padding them with spaces on the right, for a specified total length.

MfString.PadRight(str, totalWidth, paddingChar)

Static method.
Returns a new MfString that left-aligns the characters in the str of MfString by padding them on the right with a specified character, for a specified total length.

Parameters

str

A string to pad left.
Can be MfString instance or var containing string.

totalWidth

An integer of the total characters in the resulting string, equal to the number of original characters plus any additional padding characters.
Can be MfInteger instance or var containing integer.

paddingChar

A padding character.
Can be MfChar instance or string var containing character.

Returns

A new MfString that is equivalent to this instance, but right-aligned and padded on the left with as many paddingChar characters as needed to create a length of totalWidth. However, if totalWidth is less than the length of this instance, the method returns a reference to the existing instance. If totalWidth is equal to the length of this instance or str value, the method returns a new MfString that is identical to this instance or str value.
If ReturnAsObject Property for this instance is true then returns MfString otherwise returns var containing string.

Throws

Throws MfNotSupportedException if the incorrect number or type of parameters are passed in.
Throws MfArgumentOutOfRangeException if startIndex or length is out of range
Throws MfArgumentException if there is an error get a value from a parameter.

Remarks

Overloads method supports using all vars or all objects. Mixing of vars and Objects is supported for this method.

Variadic Method; This method is Variadic so you may construct an instance of MfParams containing any of the overload method parameters listed above and pass in the MfParams instance to the method instead of using the overloads described above. See MfParams for more information.

Example

; ---------------------------------------------------
s := "Hello World"
result := MfString.PadRight(s, 20) ;     Get the results; result.Value = "Hello World         "

; ---------------------------------------------------
MyStr := new MfString("Hello World")
result := MyStr.PadRight(20) ;           Get the results; result.Value = "Hello World         "

; ---------------------------------------------------
MyStr := new MfString("Hello World")
result := MyStr.PadRight(20, ".") ;      Get the results; result.Value = "Hello World........."

; ---------------------------------------------------
MyStr := new MfString("Hello World")
iWidth := new MfInteger(20) ; create a new instance MfInteger
result := MyStr.PadRight(iWidth) ;       Get the results; result.Value = "Hello World         "

; ---------------------------------------------------
MyStr := new MfString("Hello World")
p := new MfParams() ; create a new instance of the MfParams class
p.AddInteger(20) ; add totalWidth to MfParams
p.AddChar(".") ; add paddingChar to MfParams
result := MyStr.PadRight(p) ;            Get the results; result.Value = "Hello World........."

; ---------------------------------------------------
MyStr := new MfString("Hello World")
iWidth := new MfInteger(20) ; create a new instance MfInteger
pChar := new MfChar(".") ; create a new instance of MfChar
result := MyStr.PadRight(iWidth, pChar) ; Get the results; result.Value = "Hello World........."

;---------------------------------------------------
mystr := MfString.Format("OsType:{0} Version:{1}", A_OSType, A_OSVersion)
i := new MfInteger(5)
str := new MfString("Cool computer")
mystr := MfString.Format("My computer is named:{0} and I have had it for {1} years", str, i)

; set MfString instance to return it method outputs as objects. This allows for method chaining
strObjA := new MfString(mystr, true)

resultA := MfString.Format(strObjA, str, i).Substring(58).PadRight(20, ".")
MsgBox % resultA.Value ; displays  years..............

Related

PadLeft()