Skip to content
This repository has been archived by the owner on Oct 6, 2022. It is now read-only.

Latest commit

 

History

History
24 lines (18 loc) · 700 Bytes

excel.showRow.md

File metadata and controls

24 lines (18 loc) · 700 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.