println()

Use the textReport.println() function to send a carriage return and line feed to the report (that is, start a new line).

Syntax

  textReport.println()
textReport
The name of a variable that is based on the TextReport external type.

Example

The following example starts a new line in the report:

myReport TextReport = new TextReport();
...
myReport.println();

Feedback