MCPcopy Index your code
hub / github.com/python-openxml/python-docx / tables

Method tables

src/docx/blkcntnr.py:90–97  ·  view source on GitHub ↗

A list containing the tables in this container, in document order. Read-only.

(self)

Source from the content-addressed store, hash-verified

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."""

Callers

nothing calls this directly

Calls 1

TableClass · 0.90

Tested by

no test coverage detected