A list containing the tables in this container, in document order. Read-only.
(self)
| 88 | |
| 89 | @property |
| 90 | def tables(self): |
| 91 | """A list containing the tables in this container, in document order. |
| 92 | |
| 93 | Read-only. |
| 94 | """ |
| 95 | from docx.table import Table |
| 96 | |
| 97 | return [Table(tbl, self) for tbl in self._element.tbl_lst] |
| 98 | |
| 99 | def _add_paragraph(self): |
| 100 | """Return paragraph newly added to the end of the content in this container.""" |