Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 700 Bytes

excel.hideCol.md

File metadata and controls

25 lines (18 loc) · 700 Bytes

Excel.hideCol

The hideCol function is established to hide cols in a sheet.

Sample

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

API

CallingReturning
Excel . hideCol ( sheetName , startCol , endCol)Excel
ParametersTypeDescription
sheetNameStringThe sheet name.
startColNumberThe start col of the range to be hided. Indexed from 0.
endColNumberThe end col of the range to be hided. Indexed from 0.