hides or shows the row
| rowId | number|array | the row id(s) |
| state | boolean | true - to hide the row, otherwise - false |
| page | string | optional, the name of the sheet. If not specified, the method is applied to the current sheet |
$$("ssheet").hideRow(3, true, "Sheet1");
If the rowId parameter isn't specified, the method hides the selected row.
The method can accept an array of ids as a parameter. In this case all the rows from the range will be hidden:
$$("ssheet").hideRow([3, 7], true, "Sheet1"); // hides all the rows from the range