2020.2

Table Of Contents
Method Description File
type
millimeters(e.g. PDF data).
currentLoopCounter An integer value representing the current iteration of the
containing loop. When loops are nested, you have access to
the iteration for the current loop but not to any of the parent
loops. Note: This variable is a counter so it starts at 1 as
opposed to an index which usually starts at 0.
All
"currentPage" on
the next page
Returns an integer value representing the current page
where the current position is located, inside the current
record.
Text,
PDF
currentPageHeight The height of the current page in millimeters. PDF
currentPageWidth The width of the current page in millimeters. PDF
"moveTo()" on the
next page
Moves the pointer in the source data file to another position. All
"moveToNext()" on
page413
Moves the position of the pointer in the source data file to
the next line, row or node. The behavior and arguments are
different for each emulation type: text, PDF, tabular (CSV),
or XML.
All
totalPages An integer value representing the total number of pages
inside the current record.
Text,
PDF
Example
if(steps.currentPage > curPage) {
steps.moveTo(0, steps.currentPosition+14); /* Moves the current
position to 14 lines below the current position of the pointer in
Page 410