Lines Matching refs:height
8 - support min-width, max-width, min-height, max-height
11 - width/height means the full size, the "content area" is smaller with padding and border width
17 - `LV_SIZE_CONTENT`: Special value to set the width/height of an object to involve all the children…
22 - bounding box: the width/height of the elements.
153 The width and the height of an object can be set easily as well:
160 …sed on the parent's content area size. For example to set the object's height to the screen height:
189 - It makes it easy to set the width/height/etc. for several objects together. E.g. make all the sli…
256 …e size of the parent). For example `lv_pct(50)` will move the object with half of its width/height.
265 The transformed width and height are added on both sides of the object. This means a 10 px transfor…
281 Similarly to CSS, LVGL also supports `min-width`, `max-width`, `min-height` and `max-height`. These…
289 lv_obj_add_style(obj, &style_max_height, LV_STATE_DEFAULT); //Limit the height to 200 px
299 lv_obj_add_style(obj, &style_max_height, LV_STATE_DEFAULT); //Limit the height to half parent height
307 The position and size set by the layout overwrites the "normal" x, y, width, and height settings.