Append()

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

Append()

Appends value string to current MfString instance.

OutputVar := instance.Append(value)

Parameters

value

The new value to add to current instance of MfString. Can be var containing string or any object derived from MfObject.

Append(value)

Appends value string to current MfString instance.

Returns

Returns string that that has value appended.
If ReturnAsObject Property for this instance is true then returns MfString otherwise returns var containing string.

Throws

Throws MfNotSupportedException if Readonly is true.
Throws MfNullReferenceException if current instance of MfString is null.
Throws MfInvalidCastException if value cannot be cast to string.

Remarks

If value is empty no error is thrown and nothing is added to the MfString instance.

This Operation will fail if Readonly is true.

Example

myStr := new MfString("Hello World")
myStr.Append(". I love cake.")
MsgBox % myStr.Value ; Displays Hello World. I love cake.

Related

AppendLine()