Lines Matching refs:table
12 - `LV_PART_MAIN` The background of the table uses all the typical background style properties.
13 - `LV_PART_ITEMS` The cells of the table also use all the typical background style properties and t…
20 …ells can store only text so numbers need to be converted to text before displaying them in a table.
22 `lv_table_set_cell_value(table, row, col, "Content")`. The text is saved by the table so it can be …
30 …umber of rows and columns use `lv_table_set_row_cnt(table, row_cnt)` and `lv_table_set_col_cnt(tab…
34 The width of the columns can be set with `lv_table_set_col_width(table, col_id, width)`. The overal…
40 Cells can be merged horizontally with `lv_table_add_cell_ctrl(table, row, col, LV_TABLE_CELL_CTRL_M…
43 …ight is set to `LV_SIZE_CONTENT` that size will be used to show the whole table in the respective …
44 E.g. `lv_obj_set_size(table, LV_SIZE_CONTENT, LV_SIZE_CONTENT)` automatically sets the table size t…
46 If the width or height is set to a smaller number than the "intrinsic" size then the table becomes …
51 - `LV_TABLE_DRAW_PART_CELL` The individual cells of the table
69 `lv_table_get_selected_cell(table, &row, &col)` can be used to get the currently selected cell. Row…
77 .. include:: ../../../examples/widgets/table/index.rst