2021.2

Table Of Contents
Double that represents the right edge (in millimeters) of the text to find.
moveToNext()
Moves the current position in a CSV file to the next row, relative to the current position.
table
The table object holds a detail table that exists in a record.
The detail table is retrieved by name, using record.tables.<table>. For example:
record.tables.myDetailTable.
Properties
Property Description
length Returns the count of rows in the detail table.
Methods
Method Description
"addRow(record)" below Adds a row to the detail table.
"set(record)" on the next page
Sets field values in an existing detail table row.
addRow(record)
This method of the table object adds a record to an existing detail table (see "table" above).
The detail table must already exist in the data model, otherwise the call fails.
The call returns the index of the newly added record.
record
The optional record parameter is a JavaScript object that contains one or more fields
specified in the Data Model for this detail table.
The record parameter may contain a subset of the fields in the Data Model. Only the fields
included in the record parameter are updated in the database, while the contents of all other
fields remain unchanged.
The call fails if the parameter is omitted or empty, if any of the fields specified in the record
Page 432