(self, emitter, table)
| 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)) |