Add a `.Table` to the Axes; return the table.
(self, tab)
| 2616 | ) |
| 2617 | |
| 2618 | def add_table(self, tab): |
| 2619 | """ |
| 2620 | Add a `.Table` to the Axes; return the table. |
| 2621 | """ |
| 2622 | _api.check_isinstance(mtable.Table, tab=tab) |
| 2623 | self._set_artist_props(tab) |
| 2624 | self._children.append(tab) |
| 2625 | if tab.get_clip_path() is None: |
| 2626 | tab.set_clip_path(self.patch) |
| 2627 | tab._remove_method = self._children.remove |
| 2628 | return tab |
| 2629 | |
| 2630 | def add_container(self, container): |
| 2631 | """ |
no test coverage detected