* Checks if the specified rectangular area is empty (no widgets occupy any part of it). * * @param x the x coordinate (column) of the area to check * @param y the y coordinate (row) of the area to check * @param w the width in columns of the area to check * @param h the height in rows
(x: number, y: number, w: number, h: number)
| 1226 | * } |
| 1227 | */ |
| 1228 | public isAreaEmpty(x: number, y: number, w: number, h: number): boolean { |
| 1229 | return this.engine.isAreaEmpty(x, y, w, h); |
| 1230 | } |
| 1231 | |
| 1232 | /** |
| 1233 | * If you add elements to your grid by hand (or have some framework creating DOM), you have to tell gridstack afterwards to make them widgets. |
no outgoing calls
no test coverage detected