The showRow function is established to show rows in a sheet.
var excel = new Excel("test.xlsx"); excel.showRow("mySheet",2,4);
Calling | Returning |
---|---|
Excel . showRow ( sheetName , startRow , endRow) | Excel |
Parameters | Type | Description |
---|---|---|
sheetName | String | The sheet name. |
startRow | Number | The start row of the range to be showed. Indexed from 0. |
endRow | Number | The end row of the range to be showed. Indexed from 0. |