inserts an empty row above the specified one
rowId | number|array | the row id(s) |
$$("ssheet").insertRow(5);
If the row ID isn't specified, a new row will be inserted above the selected one. The method can accept an array of ids as a parameter:
$$("ssheet").insertRow([5, 7]) // inserts rows 5, 6, 7