MCPcopy Index your code
hub / github.com/rawpython/remi / fill_table

Method fill_table

examples/table_widget_app.py:73–76  ·  view source on GitHub ↗
(self, emitter, table)

Source from the content-addressed store, hash-verified

71 table.set_column_count(int(value))
72
73 def fill_table(self, emitter, table):
74 for ri in range(0, table.row_count):
75 for ci in range(0, table.column_count):
76 table.item_at(ri, ci).set_text("row:%s,column:%s"%(str(ri),str(ci)))
77
78 def on_use_title_change(self, emitter, value, table):
79 print(str(value))

Callers 1

mainMethod · 0.95

Calls 2

item_atMethod · 0.80
set_textMethod · 0.45

Tested by

no test coverage detected