Skip to content

Latest commit

 

History

History
44 lines (23 loc) · 823 Bytes

README.md

File metadata and controls

44 lines (23 loc) · 823 Bytes

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

Info - Edit vba on VSCode with XVBA:

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!