MCPcopy
hub / github.com/exceljs/exceljs / getRow

Method getRow

lib/doc/worksheet.js:391–397  ·  view source on GitHub ↗
(r)

Source from the content-addressed store, hash-verified

389
390 // get a row by row number.
391 getRow(r) {
392 let row = this._rows[r - 1];
393 if (!row) {
394 row = this._rows[r - 1] = new Row(this, r);
395 }
396 return row;
397 }
398
399 // get multiple rows by row number.
400 getRows(start, length) {

Callers 8

spliceColumnsMethod · 0.95
getRowsMethod · 0.95
addRowMethod · 0.95
insertRowMethod · 0.95
_copyStyleMethod · 0.95
spliceRowsMethod · 0.95
eachRowMethod · 0.95
getCellMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected