spaces()

Use the textReport.spaces() function to advance the column setting by the specified number of spaces. The spaces will not wrap to the next line.

Syntax

  textReport.spaces(
     numSpaces INT in)
textReport
The name of a variable that is based on the TextReport external type.
numSpaces
The number of spaces to add to the current line.

Example

In the following example, the subsequent report content prints after 7 spaces:

myReport TextReport = new TextReport();
...
myReport.spaces(7);

Feedback