CPF/CPF.ReoGrid/Resources/base_lib.reo
2024-06-24 10:15:59 +08:00

13 lines
350 B
Plaintext

/* Copyright (c) 2012-2016 unvell inc., All Rights Reserved. */
function Pos(row, col) { this.row = row; this.col = col; }
function Range(row, col, rows, cols) {
this.row = row; this.col = col; this.rows = rows; this.cols = cols;
this.startPos = new Pos(row, col);
this.endPos = new Pos(row + rows, col + cols);
}
this.grid = workbook;