> For the complete documentation index, see [llms.txt](https://doc.open-tx.org/opentx-2-2-lua-reference-guide/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://doc.open-tx.org/opentx-2-2-lua-reference-guide/part_iii_-_opentx_lua_api_reference/lcd_functions/drawrectangle.md).

# lcd.drawRectangle(x, y, w, h \[, flags \[, t]])

Draw a rectangle from top left corner (x,y) of specified width and height

@status current Introduced in 2.0.0, changed in 2.2.0

### Parameters

* `x,y` (positive numbers) top left corner position
* `w` (number) width in pixels
* `h` (number) height in pixels
* `flags` (unsigned number) drawing flags
* `t` (number) thickness in pixels, defaults to 1 (only on Horus)

### Return value

none

## Examples

[lcd/drawRectangle-example](https://raw.githubusercontent.com/opentx/lua-reference-guide/opentx_2.2/lcd/drawRectangle-example.lua)

```lua
local function run()
lcd.clear()
lcd.drawText(10,22,"drawRectangle()",DBLSIZE)
lcd.drawRectangle(5, 5, 150, 50, SOLID)
lcd.drawRectangle(6, 6, 150, 50, GREY_DEFAULT)
lcd.drawRectangle(7, 7, 150, 50, SOLID)
lcd.drawRectangle(8, 8, 150, 50, GREY_DEFAULT)
end

return{run=run}
```

![](https://3605924701-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MRzpA5C06zjyxDVfHVi%2Fsync%2Fe12b064f428ce01cfe3ffe9b6304b8ebd6f5837c.png?generation=1611683719835179\&alt=media)
