(self)
| 2996 | @property |
| 2997 | @editor_attribute_decorator("WidgetSpecific", '''Table row count.''', int, {'possible_values': '', 'min': 0, 'max': 100, 'default': 1, 'step': 1}) |
| 2998 | def row_count(self): return len(self.children) |
| 2999 | @row_count.setter |
| 3000 | def row_count(self, value): self.set_row_count(value) |
| 3001 |
nothing calls this directly
no test coverage detected