rows
| 393 | |
| 394 | // rows |
| 395 | void Matrix::insertRows(int before, int count) { |
| 396 | Q_D(Matrix); |
| 397 | if (count < 1 || before < 0 || before > rowCount()) |
| 398 | return; |
| 399 | WAIT_CURSOR; |
| 400 | exec(new MatrixInsertRowsCmd(d, before, count)); |
| 401 | RESET_CURSOR; |
| 402 | } |
| 403 | |
| 404 | void Matrix::appendRows(int count) { |
| 405 | insertRows(rowCount(), count); |