Description
Inserts one or more rows above or below the current text input position in the table.
Applies to
Syntax
boolean rtename.TableInsertRows(integer position)
boolean rtename.TableInsertRows(integer position, long rows)
Argument |
Description |
---|---|
position |
The position to insert the new row(s). The following values are supported:
|
rows | The number of rows to insert. |
Return value
Boolean.
Returns true if the row(s) are inserted successfully. Returns false if the row(s) are not inserted or the current text input position is not in a table. Returns null if any argument is null.
Examples
The following example inserts 2 rows above the current position.
boolean lb_rtn lb_rtn = rte_1. TableInsertRows (1,2)