Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 700 Bytes

excel.hideRow.md

File metadata and controls

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