skipToTop()

Use the textReport.skipToTop() function to advance to the top of the next page of the report.

Syntax

  textReport.skipToTop()
textReport
The name of a variable that is based on the TextReport external type.

Example

The following example issues a top-of-form command in the report:

myReport TextReport = new TextReport();
...
myReport.skipToTop();

Feedback