Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 412 Bytes

excel.setActiveSheet.md

File metadata and controls

20 lines (14 loc) · 412 Bytes

Excel.setActiveSheet

The setActiveSheet function is used to set a sheet as the active sheet.

Sample

var excel = new Excel("test.xlsx");
excel.createSheet("newSheet").setActiveSheet("newSheet");

API

Calling Returning
excel. setActiveSheet ( sheetName ) Excel
Parameters Type Description
sheetName String The sheet name.