Use the textReport.column() function to write or print the next element in the specified column of the report.
textReport.column(
colNo INT in)
The following example advances the report position to column 3:
myReport TextReport = new TextReport();
...
myReport.column(3);