Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 704 Bytes

excel.showRow.md

File metadata and controls

25 lines (18 loc) · 704 Bytes

Excel.showRow

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

Sample

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

API

CallingReturning
Excel . showRow ( sheetName , startRow , endRow)Excel
ParametersTypeDescription
sheetNameStringThe sheet name.
startRowNumberThe start row of the range to be showed. Indexed from 0.
endRowNumberThe end row of the range to be showed. Indexed from 0.