MCPcopy Index your code
hub / github.com/exceljs/exceljs / insertRow

Method insertRow

lib/doc/worksheet.js:425–429  ·  view source on GitHub ↗
(pos, value, style = 'n')

Source from the content-addressed store, hash-verified

423 }
424
425 insertRow(pos, value, style = 'n') {
426 this.spliceRows(pos, 0, value);
427 this._setStyleOption(pos, style);
428 return this.getRow(pos);
429 }
430
431 insertRows(pos, values, style = 'n') {
432 this.spliceRows(pos, 0, ...values);

Callers

nothing calls this directly

Calls 3

spliceRowsMethod · 0.95
_setStyleOptionMethod · 0.95
getRowMethod · 0.95

Tested by

no test coverage detected