excel-xvba
v1.0.3-b
Published
Excel Library for Read, manipulate and write spreadsheet. (Whith Auto-Completion)
Downloads
21
Maintainers
Readme
ExcelXvba
Excel Librar for Read, manipulate and write spreadsheet. (With Auto-Completion)
See www.xvba.dev, for more info.
If you want to create your own Windows COM Like this package See xvba-com package
- XvbaCom
Info - Edit vba on VSCode with XVBA:
- www.xvba.dev
Importing
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
- Contributions are very welcome!