(pos, value, style = 'n')
| 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); |
nothing calls this directly
no test coverage detected