OutPutVar := instance.AppendLine()
OutPutVar := instance.AppendLine(value)
Appends a new line represented by MfEnvironment.NewLine to current MfString instance.
Returns string that that has new line appended.
If ReturnAsObject Property for this instance is true then returns MfString otherwise returns var containing string. See example 2.
Append value followed by a new line represented by MfEnvironment.NewLine to current MfString instance.
value
The new value to add to current instance of MfString. Can be var containing string or any object derived from MfObject.
Returns string that that has value and new line appended.
If ReturnAsObject Property for this instance is true then returns MfString otherwise returns var containing string. See example 2.
Throws MfNotSupportedException if Readonly is true.
Throws MfNullReferenceException if current instance of MfString is null.
Throws MfInvalidCastException if value cannot be cast to string.
If value is empty no error is thrown and nothing is added to the MfString instance.
This Operation will fail if Readonly is true.
The following code produces the message box shown in figure 1.
mfs := new MfString()
mfs.AppendLine("The quick brown fox.")
mfs.AppendLine("Jumped over the lazy cat.")
mfs.Append("The Cat was sleeping.")
MsgBox, 64, Result, % mfs.Value
The following code produces the message box shown in figure 1. Notice that ReturnAsObject is set to true allowing method chaining. This achieves the same result as example 1.
mfs := new MfString()
mfs.ReturnAsObject := true
mfs.AppendLine("The quick brown fox.").AppendLine("Jumped over the lazy cat.").Append("The Cat was sleeping.")
MsgBox, 64, Result, % mfs.Value