(sheetName, start, numDelete, numInsert)
| 166 | } |
| 167 | |
| 168 | spliceColumns(sheetName, start, numDelete, numInsert) { |
| 169 | _.each(this.matrixMap, matrix => { |
| 170 | matrix.spliceColumns(sheetName, start, numDelete, numInsert); |
| 171 | this.normaliseMatrix(matrix, sheetName); |
| 172 | }); |
| 173 | } |
| 174 | |
| 175 | get model() { |
| 176 | // To get names per cell - just iterate over all names finding cells if they exist |
nothing calls this directly
no test coverage detected