The hideCol function is established to hide cols in a sheet.
var excel = new Excel("test.xlsx");
excel.hideCol("mySheet",2,4);
Calling | Returning |
---|---|
Excel . hideCol ( sheetName , startCol , endCol) | Excel |
Parameters | Type | Description |
---|---|---|
sheetName | String | The sheet name. |
startCol | Number | The start col of the range to be hided. Indexed from 0. |
endCol | Number | The end col of the range to be hided. Indexed from 0. |