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.
textReport.spaces(
numSpaces INT in)
In the following example, the subsequent report content prints after 7 spaces:
myReport TextReport = new TextReport();
...
myReport.spaces(7);