@officesdk/web
Version:
Web JS SDK for the Office SDK
24 lines (23 loc) • 619 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.createSpreadsheetCellProxy = void 0;
function createSpreadsheetCellProxy(cell) {
return {
get row() {
return cell.row;
},
get column() {
return cell.column;
},
get sheetId() {
return cell.sheetId;
},
getCellText: function () {
return cell.getCellText();
},
getCellValue: function () {
return cell.getCellValue();
},
};
}
exports.createSpreadsheetCellProxy = createSpreadsheetCellProxy;