Lines Matching refs:col

324       this.nativeCol = decoded.col + offset;
333 } else if (address.col !== undefined) {
334 this.col = address.col + offset;
731 col: this.col
2060 var col = null;
2065 if (col) {
2066 col = null;
2068 } else if (!col || !column.equivalentTo(col)) {
2069 col = {
2079 cols.push(col);
2081 col.max = index + 1;
2097 var col = cols[index++];
2099 while (count < col.min) {
2103 while (count <= col.max) {
2104 columns.push(new Column(worksheet, count++, col));
2200 for (var col = location.left; col <= location.right; col++) {
2204 address: colCache.n2l(col) + row,
2206 col: col
2261 var range = new Range(cell.row, cell.col, cell.row, cell.col, sheetName);
2266 var c = matrix.findCellAt(sheetName, yy, cell.col);
2308 for (x = cell.col - 1; hGrow(x, 'left'); x--) {
2312 for (x = cell.col + 1; hGrow(x, 'right'); x++) {
2351 matrix.forEachInSheet(sheetName, function (cell, row, col) {
2353 if (cell.row !== row || cell.col !== col) {
2355 cell.col = col;
2356 cell.address = colCache.n2l(col) + row;
2525 col: decoded.left,
2529 col: decoded.right,
2665 left: Math.min(tl.col, br.col),
2667 right: Math.max(tl.col, br.col),
2670 this.setTLBR(tl.row, tl.col, br.row, br.col, s);
2746 left: tlbr.col,
2748 right: tlbr.col,
2794 this.expand(address.row, address.col, address.row, address.col);
2821 …ess.row >= this.top && address.row <= this.bottom && address.col >= this.left && address.col <= th…
2826 for (var col = this.left; col <= this.right; col++) {
2828 cb(colCache.encodeAddress(row, col), row, col);
2993 var cell = this._cells[address.col - 1];
2996 var column = this._worksheet.getColumn(address.col);
2999 this._cells[address.col - 1] = cell;
3007 value: function getCell(col) {
3008 if (typeof col === 'string') {
3010 var column = this._worksheet.getColumnKey(col);
3013 col = column.number;
3015 col = colCache.l2n(col);
3019 return this._cells[col - 1] || this.getCellEx({
3020 address: colCache.encodeAddress(this._number, col),
3022 col: col
3158 values[cell.col] = cell.value;
3185 col: index + offset
3196 col: column.number
3233 if (!min || min > cell.col) {
3234 min = cell.col;
3237 if (max < cell.col) {
3238 max = cell.col;
3330 if (!min || min > cell.col) {
3331 min = cell.col;
3334 if (max < cell.col) {
3335 max = cell.col;
3381 var col = previousAddress.col + 1;
3384 col: col,
3385 address: colCache.encodeAddress(row, col),
3386 $col$row: "$".concat(colCache.n2l(col), "$").concat(row)
3597 col = _table$tl.col;
3599 assert(col > 0, 'Table must be on valid col');
3604 …table.autoFilterRef = colCache.encode(row, col, row + filterHeight - 1, col + width - 1); // table…
3606 table.tableRef = colCache.encode(row, col, row + tableHeight - 1, col + width - 1);
3637 col = _table$tl2.col;
3645 var cell = r.getCell(col + j);
3654 var cell = r.getCell(col + j);
3664 var cell = _r.getCell(col + j);
3694 col = _table$tl3.col;
3700 var cell = r.getCell(col + j);
3708 var cell = r.getCell(col + j);
3717 var cell = _r2.getCell(col + j);
3765 var cell = row.getCell(ref.col + j);
3775 var _cell = _row.getCell(ref.col + _j);
3786 var _cell2 = _row2.getCell(ref.col + _j2);
4440 var col = this._keys[c];
4441 if (col) return col; // otherwise, assume letter
4804 return row ? row.findCell(address.col) : undefined;
4930 getResult = function getResult(row, col) {
4931 return results[row - top][col - left];
4935 getResult = function getResult(row, col) {
4936 return results[(row - top) * width + (col - left)];
5186 var col = _ref.col;
5188 if (!counts[col]) {
5189 counts[col] = true;
5484 for (var col = address.left; col <= address.right; col++) {
5485 this.getCellAt(address.sheetName, row, col);
5513 col: colNumber
5532 delete row[address.col];
5602 var col = address.col;
5604 if (row && row[col]) {
5605 return row[col];
5609 …return row[col] = this.template ? Object.assign(address, JSON.parse(JSON.stringify(this.template))…
5791 var col = '';
5804 col += value[i]; // colNumber starts from 1
5823 throw new Error("Out of bounds. Invalid column letter: ".concat(col));
5831 value = col + row;
5834 col: colNumber,
5836 $col$row: "$".concat(col, "$").concat(row)
5864 left: Math.min(tl.col, br.col),
5866 right: Math.max(tl.col, br.col)
5890 var left = Math.min(tl.col, br.col);
5892 var right = Math.max(tl.col, br.col);
5903 col: left,
5910 col: right,
5934 encodeAddress: function encodeAddress(row, col) {
5935 return colCache.n2l(col) + row;
5959 col = _address[0],
5962 return col >= left && col <= right && row >= top && row <= bottom;
6230 var col = colCache.l2n(colStr);
6234 col += to.col - offset.col;
6241 var res = (sheet || '') + (colDollar || '') + colCache.n2l(col) + (rowDollar || '') + row;
9497 var l = ref.col;
9627 xmlStream.leafNode('x:Column', null, model.refAddress.col - 1);
15935 var matchCol = function matchCol(addr, height, col) {
15937 var otherAddress = colCache.encodeAddress(addr.row + i, col);
15960 var otherAddress = colCache.encodeAddress(addr.row + height, addr.col);
15964 otherAddress = colCache.encodeAddress(addr.row + height, addr.col);
15970 while (matchCol(addr, height, addr.col + width)) {
15977 otherAddress = colCache.encodeAddress(addr.row + i, addr.col + j);
15984 var right = addr.col + (width - 1);
25939 var col = row[i];
25941 if (col) {
25942 return col[1];
27151 this.format = function (col) {
27152 return col.trim();
27155 this.format = function (col) {
27156 return col.trimLeft();
27159 this.format = function (col) {
27160 return col.trimRight();
27163 this.format = function (col) {
27164 return col;
27321 col = _this$gatherDataBetwe.col;
27336 return col;
27382 col: this.columnFormatter.format(characters.join('')),