(self, emitter, value, table)
| 68 | table.set_row_count(int(value)) |
| 69 | |
| 70 | def on_column_count_change(self, emitter, value, 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): |
nothing calls this directly
no test coverage detected