column()
Use the textReport.column() function to write or print the next element in the specified column of the report.
Syntax
textReport.column(
colNo INT in)
- textReport
- The name of a variable that is based on the TextReport external type.
- colNo
- The number of the report column where the next element appears. Column 1 is the first column after the left margin.
Example
The following example advances the report position to column 3:
myReport TextReport = new TextReport();
...
myReport.column(3);