gridstack_is_area_empty
Check if a specified grid area is empty by providing coordinates and dimensions to verify available space for widget placement.
Instructions
Check if an area is empty
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| x | Yes | X position | |
| y | Yes | Y position | |
| w | Yes | Width | |
| h | Yes | Height |
Input Schema (JSON Schema)
{
"properties": {
"h": {
"description": "Height",
"type": "number"
},
"w": {
"description": "Width",
"type": "number"
},
"x": {
"description": "X position",
"type": "number"
},
"y": {
"description": "Y position",
"type": "number"
}
},
"required": [
"x",
"y",
"w",
"h"
],
"type": "object"
}