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) · 696 Bytes

excel.hideRow.md

File metadata and controls

24 lines (18 loc) · 696 Bytes

Excel.hideRow

The hideRow function is established to hide rows in a sheet.

Sample

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

API

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