2019.2

Table Of Contents
Method Description File
type
currentPageWidth The width of the current page in millimeters. PDF
moveTo()
Moves the pointer in the source data file to another position. All
moveToNext()
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
the data */
curPage++;
} else if(curLine.startsWith("LOAD FACTOR")) { /* Extracts data to
the curLine variable until the string "LOAD FACTOR" is encountered
*/
break;
} else {
lineArray.push(curLine); /* Adds the current line value
(extraction) to the array */
}
currentPage
Property of the steps object (see "steps" on the previous page) containing an integer value that
represents the page where the pointer is located, inside the current record.
Page 433