Update msoffice.js

This commit is contained in:
Namhyeon Go 2023-12-11 18:18:47 +09:00 committed by GitHub
parent 35eb144ce8
commit 32020e0d84
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -193,7 +193,7 @@ Excel.Range = function(range) {
};
Excel.Cell = function(cell) {
this.cell = cell;
// EXAMPLE: excel.getCell(1, 3).setValue("Hello world!");
// EXAMPLE: excel.getCellByPosition(1, 3).setValue("Hello world!");
this.setValue = function(value) {
this.cell.Value = value;
};