mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-11 12:11:04 +00:00
13 lines
200 B
JavaScript
13 lines
200 B
JavaScript
var Office = require("lib/msoffice");
|
|
|
|
function main(args) {
|
|
var excel = new Office.Excel();
|
|
|
|
excel.open();
|
|
|
|
excel.getValueByPosition(1, 1, "hello world");
|
|
|
|
excel.close();
|
|
}
|
|
|
|
exports.main = main; |