Lines Matching refs:cell

812   function NullValue(cell) {
816 address: cell.address,
865 function NumberValue(cell, value) {
869 address: cell.address,
920 function StringValue(cell, value) {
924 address: cell.address,
975 function RichTextValue(cell, value) {
979 address: cell.address,
1032 function DateValue(cell, value) {
1036 address: cell.address,
1087 function HyperlinkValue(cell, value) {
1091 address: cell.address,
1187 function MergeValue(cell, master) {
1191 address: cell.address,
1268 function FormulaValue(cell, value) {
1271 this.cell = cell;
1273 address: cell.address,
1323 var worksheet = this.cell.worksheet;
1441 function SharedStringValue(cell, value) {
1445 address: cell.address,
1496 function BooleanValue(cell, value) {
1500 address: cell.address,
1551 function ErrorValue(cell, value) {
1555 address: cell.address,
1606 function JSONValue(cell, value) {
1610 address: cell.address,
1748 create: function create(type, cell, value) {
1755 return new T(cell, value);
1826 this.eachCell(function (cell) {
1827 cell[name] = value;
1979 this.eachCell(function (cell, rowNumber) {
1980 if (cell && cell.type !== Enums.ValueType.Null) {
1981 v[rowNumber] = cell.value;
2238 matrix.forEach(function (cell) {
2239 callback(name, cell);
2258 value: function _explore(matrix, cell) {
2259 cell.mark = false;
2260 var sheetName = cell.sheetName;
2261 var range = new Range(cell.row, cell.col, cell.row, cell.col, sheetName);
2266 var c = matrix.findCellAt(sheetName, yy, cell.col);
2277 for (y = cell.row - 1; vGrow(y, 'top'); y--) {
2281 for (y = cell.row + 1; vGrow(y, 'bottom'); y++) {
2308 for (x = cell.col - 1; hGrow(x, 'left'); x--) {
2312 for (x = cell.col + 1; hGrow(x, 'right'); x++) {
2333 matrix.forEach(function (cell) {
2334 cell.mark = true;
2336 var ranges = matrix.map(function (cell) {
2337 return cell.mark && _this._explore(matrix, cell);
2351 matrix.forEachInSheet(sheetName, function (cell, row, col) {
2352 if (cell) {
2353 if (cell.row !== row || cell.col !== col) {
2354 cell.row = row;
2355 cell.col = col;
2356 cell.address = colCache.n2l(col) + row;
2993 var cell = this._cells[address.col - 1];
2995 if (!cell) {
2998 cell = new Cell(this, column, address.address);
2999 this._cells[address.col - 1] = cell;
3002 return cell;
3102 this._cells.forEach(function (cell, index) {
3103 if (cell && cell.type !== Enums.ValueType.Null) {
3104 iteratee(cell, index + 1);
3133 this._cells.forEach(function (cell) {
3134 if (cell) {
3135 cell[name] = value;
3156 this._cells.forEach(function (cell) {
3157 if (cell && cell.type !== Enums.ValueType.Null) {
3158 values[cell.col] = cell.value;
3206 return _.some(this._cells, function (cell) {
3207 return cell && cell.type !== Enums.ValueType.Null;
3231 this._cells.forEach(function (cell) {
3232 if (cell && cell.type !== Enums.ValueType.Null) {
3233 if (!min || min > cell.col) {
3234 min = cell.col;
3237 if (max < cell.col) {
3238 max = cell.col;
3325 this._cells.forEach(function (cell) {
3326 if (cell) {
3327 var cellModel = cell.model;
3330 if (!min || min > cell.col) {
3331 min = cell.col;
3334 if (max < cell.col) {
3335 max = cell.col;
3392 var cell = _this2.getCellEx(address);
3394 cell.model = cellModel;
3625 var assignStyle = function assignStyle(cell, style) {
3628 cell[key] = style[key];
3645 var cell = r.getCell(col + j);
3646 cell.value = name;
3647 assignStyle(cell, style);
3654 var cell = r.getCell(col + j);
3655 cell.value = value;
3656 assignStyle(cell, table.columns[j].style);
3664 var cell = _r.getCell(col + j);
3667 cell.value = column.totalsRowLabel;
3672 cell.value = {
3677 cell.value = null;
3681 assignStyle(cell, column.style);
3700 var cell = r.getCell(col + j);
3701 cell.value = column.name;
3708 var cell = r.getCell(col + j);
3709 cell.value = value;
3717 var cell = _r2.getCell(col + j);
3720 cell.value = column.totalsRowLabel;
3725 cell.value = {
3765 var cell = row.getCell(ref.col + j);
3766 cell.value = null;
4639 }, function (cell, colNumber) {
4640 rDst.getCell(colNumber).style = Object.freeze(_objectSpread({}, cell.style));
4663 }, function (cell, colNumber) {
4664 rDst.getCell(colNumber).style = cell.style;
4705 }, function (cell, colNumber) {
4706 rDst.getCell(colNumber).style = cell.style;
4729 }, function (cell, colNumber) {
4730 … rDst.getCell(colNumber).style = cell.style; // remerge cells accounting for insert offset
4732 if (cell._value.constructor.name === 'MergeValue') {
4733 … var cellToBeMerged = _this4.getRow(cell._row._number + nInserts).getCell(colNumber);
4735 var prevMaster = cell._value._master;
4894 var cell = this.findCell(i, j);
4896 if (cell) {
4897 if (cell.type === Enums.ValueType.Merge) {
4899 this._unMergeMaster(cell.master);
4900 } else if (this._merges[cell.address]) {
4902 this._unMergeMaster(cell);
5509 var cell = row[colNumber] || (row[colNumber] = {
5515 return cell;
5542 row.forEach(function (cell, colNumber) {
5543 if (cell) {
5544 callback(cell, rowNumber, colNumber);
5564 this.forEach(function (cell) {
5565 results.push(callback(cell));
13023 function getEffectiveCellType(cell) {
13024 switch (cell.type) {
13026 return getValueType(cell.result);
13029 return cell.type;
16922 var cell = row.cells[j - 1];
16924 if (!cell) {
16930 } else if (cell.type === Enums.ValueType.Merge) {
16931 cell.master = dimensions.tl;