OutputVar := instance.AppendLine()
OutputVar := instance.AppendLine(value)
Appends the default line terminator to the end of the current StringBuilder object.
A reference to this instance after the append operation has completed.
Throws MfArgumentOutOfRangeException if enlarging the value of this instance would exceed MaxCapacity.
The default line terminator is the current value of the MfEnvironment.NewLine property.
The capacity of this instance is adjusted as needed.
Appends a copy of the specified string followed by the default line terminator to the end of the current StringBuilder object.
value
The string to append.
A reference to this instance after the append operation has completed.
Throws MfArgumentOutOfRangeException if enlarging the value of this instance would exceed MaxCapacity.
The default line terminator is the current value of the MfEnvironment.NewLine property.
The capacity of this instance is adjusted as needed.
sb := new MfText.StringBuilder()
line := "A line of text."
num := 123
; Append two lines of text.
sb.AppendLine("The first line of text.")
sb.AppendLine(line)
sb.AppendLine()
sb.AppendLine("")
; Append the non-string value, 123, and two new lines
sb.Append(num).AppendLine().AppendLine()
; Append two lines of text.
sb.AppendLine(line)
sb.AppendLine("The last line of text.")
MsgBox % sb.ToString()
/*
The first line of text.
A line of text.
123
A line of text.
The last line of text.
*/