-
Excel Librar for Read, manipulate and write spreadsheet. (With Auto-Completion)
-
See www.xvba.dev, for more info.
import {ExcelXvba} from "excel-xvba"
const excel = new ExcelXvba();
excel.Visible();
const xlPath = path.join(__basedir,"index.xlsb");
const Book: WorkBook = excel.WorkBooks.Open(xlPath);
const sheets = excel.Sheets;
const total = sheets.Count();
const exName = excel.Name();
excel.Quit();
//Close C++ COMs
Excel.CloseAllCOMWithDelay();
- Contributions are very welcome!