Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 538 Bytes

excel.showCol.md

File metadata and controls

21 lines (16 loc) · 538 Bytes

Excel.showCol

The showCol function is used to show columns in a sheet.

Sample

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

API

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