Lines Matching refs:table
25 table = lv.table(lv.scr_act()) variable
28 table.set_cell_value(0, 0, "Name")
29 table.set_cell_value(1, 0, "Apple")
30 table.set_cell_value(2, 0, "Banana")
31 table.set_cell_value(3, 0, "Lemon")
32 table.set_cell_value(4, 0, "Grape")
33 table.set_cell_value(5, 0, "Melon")
34 table.set_cell_value(6, 0, "Peach")
35 table.set_cell_value(7, 0, "Nuts")
38 table.set_cell_value(0, 1, "Price")
39 table.set_cell_value(1, 1, "$7")
40 table.set_cell_value(2, 1, "$4")
41 table.set_cell_value(3, 1, "$6")
42 table.set_cell_value(4, 1, "$2")
43 table.set_cell_value(5, 1, "$5")
44 table.set_cell_value(6, 1, "$1")
45 table.set_cell_value(7, 1, "$9")
48 table.set_height(200)
49 table.center()
52 table.add_event_cb(draw_part_event_cb, lv.EVENT.DRAW_PART_BEGIN, None)