Xojo.IO.TextOutputStream.WriteLine

From Xojo Documentation

Method

Xojo.IO.TextOutputStream.WriteLine(data As Text)

Supported for all project types and targets.

Writes the passed data to the output stream followed by the character(s) defined in Delimiter.

Sample Code

Var outputText As Text = "This is a test."
outputStream.WriteLine("1: " + outputText)
outputStream.WriteLine("2: " + outputText)