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

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

@status current Introduced in 2.0.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

### Return value

none

## Examples

[lcd/drawRectangle-example](https://raw.githubusercontent.com/opentx/lua-reference-guide/master/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://2443226175-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MRzpA5IZ0ZG8wYxAV6k%2Fsync%2Fe12b064f428ce01cfe3ffe9b6304b8ebd6f5837c.png?generation=1611683699384610\&alt=media)
