Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 534 Bytes

excel.showRow.md

File metadata and controls

22 lines (16 loc) · 534 Bytes

Excel.showRow

The showRow function is used to show rows in a sheet.

Sample

var excel = new Excel("test.xlsx");
excel.showRow("mySheet",2,4);

API

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 shown. Indexed from 0.
endRow Number The end row of the range to be shown. Indexed from 0.