(sizes: ColumnSize[])
| 112 | widget.setShowGrid(showGrid); |
| 113 | }, |
| 114 | set columnWidth(sizes: ColumnSize[]) { |
| 115 | for (const { column, width } of sizes) { |
| 116 | verifyRanges(cellRange, { column }); |
| 117 | widget.setColumnWidth(column, width); |
| 118 | } |
| 119 | }, |
| 120 | set rowHeight(sizes: RowSize[]) { |
| 121 | for (const { row, width } of sizes) { |
| 122 | verifyRanges(cellRange, { row }); |
nothing calls this directly
no test coverage detected