Lines Matching full:it

4 … (the size without padding), the parent becomes scrollable and scrollbar(s) will appear. That's it.
34 An object goes to the `LV_STATE_SCROLLED` state while it's being scrolled. This allows adding diffe…
47 Note that, the `base_dir` style property is inherited. Therefore, it can be set directly on the `LV…
69 It's possible to make an object non-scrollable with `lv_obj_clear_flag(obj, LV_OBJ_FLAG_SCROLLABLE)…
87 …agated to its parent. If the parent can be scrolled in that direction than it will be scrolled ins…
88 It continues propagating to the grandparent and grand-grandparents as well.
90 The propagation on scrolling is called "scroll chaining" and it can be enabled/disabled with `LV_OB…
94 When the user scrolls an object and releases it, LVGL can emulate inertial momentum for the scrolli…
102 When the object is released the content scrolled in it will be animated back to the valid position.
128 …a scrollable object. Pressing the "Tab" button focuses the next object but it might be outside the…
131 The object will be scrolled into view even if it's on a different page of a tabview.
140 From time to time you may need to retrieve the scroll position of an element, either to restore it
165 …rmally, the user shouldn't use this parameter but if a custom widget is created it might be useful.
167 In short, self size establishes the size of an object's content. To understand it better take the e…
168 Let's say it has 10 rows each with 50 px height. So the total height of the content is 500 px. In o…
178 //If x or y < 0 then it doesn't neesd to be calculated now