Delete all rows and field names from the table, maintaining nothing but styling options
(self)
| 769 | self._rows = [] |
| 770 | |
| 771 | def clear(self): |
| 772 | |
| 773 | """Delete all rows and field names from the table, maintaining nothing but styling options""" |
| 774 | |
| 775 | self._rows = [] |
| 776 | self._field_names = [] |
| 777 | self._widths = [] |
| 778 | |
| 779 | ############################## |
| 780 | # MISC PUBLIC METHODS # |
no outgoing calls