skipLines()
Use the textReport.skipLines() function to insert a specified number of blank lines into the report.
Syntax
textReport.skipLines(
numLines INT in)- textReport
- The name of a variable that is based on the TextReport external type.
- numLines
- The number of lines to skip. If there are not that many lines remaining on the current page, the report advances to the next page.
Example
In the following example, the command inserts four blank lines into the report:
myReport TextReport = new TextReport();
...
myReport.skipLines(4);