Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 545 Bytes

excel.hideCol.md

File metadata and controls

22 lines (16 loc) · 545 Bytes

Excel.hideCol

The hideCol function is used to hide columns in a sheet.

Sample

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

API

Calling Returning
excel. hideCol ( sheetName, startCol, endCol ) Excel
Parameters Type Description
sheetName String The sheet name.
startCol Number The start column of the range to be hidden. Indexed from 0.
endCol Number The end column of the range to be hidden. Indexed from 0.