/
excelOpenWorkbook
excelOpenWorkbook
Description
Opens a workbook so that it may be used in the script.
Parameters
Return Type
Integer
Example
Opens a workbook, adds a new worksheet and then saves and closes the workbook.
use "excel";
int fid = openWorkbook("snakes.xlsx");
addSheet(fid, "Venemous Snakes", true);
closeWorkbook(fid);
Click here to download the workbook used in this example.
See also
Related content
excelSetCell
excelSetCell
More like this
excelAddRow
excelAddRow
More like this
Running Groovy Scripts in the SIL Manager
Running Groovy Scripts in the SIL Manager
Read with this
excelCloseWorkbook
excelCloseWorkbook
More like this
SIL Connector Modules
SIL Connector Modules
Read with this
excelAddSheet
excelAddSheet
More like this