1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-28 07:03:00 +08:00
lvgl/xmls/lv_tabview.xml
2024-12-05 10:14:39 +01:00

25 lines
622 B
XML

<!--
Example
<lv_tabview active="3">
<lv_tabview-tab text="First">
<lv_button/>
</lv_tabview-tab/>
</lv_tabview>
-->
<widget>
<api>
<prop name="active" help="Set the current tab">
<param name="idx" type="int" help="zero based index of the tab to select"/>
</prop>
<prop name="tab_bar_position" type="dir">
<param name="idx" type="dir(top bottom left right)" help=""/>
</prop>
<element name="tab_bar" type="obj" access="get">
</element>
<element name="tab" type="obj" access="add">
<arg name="text" type="string" arg="true"/>
</element>
</api>
</widget>