Use the textReport.skipLines() function to insert a specified number of blank lines into the report.
textReport.skipLines(
numLines INT in)
In the following example, the command inserts four blank lines into the report:
myReport TextReport = new TextReport();
...
myReport.skipLines(4);