Update msoffice.js

This commit is contained in:
Namhyeon Go 2023-12-11 17:56:31 +09:00 committed by GitHub
parent 2b524dcb13
commit bf796ed61c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -110,10 +110,10 @@ FileTypes.Word = [
// EXAMPLE: new Office.Excel()
function Excel() {
this.application = CreateObject("Excel.Application");
this.Version = this.application.Version;
this.version = this.application.Version;
this.application.Visible = true;
console.info("Microsoft Excel Version:", this.Version);
console.info("Microsoft Office Excel:", this.version);
this.currentWorkbook = null;
this.currentWorksheet = null;