A list containing the paragraphs in this container, in document order. Read-only.
(self)
| 80 | |
| 81 | @property |
| 82 | def paragraphs(self): |
| 83 | """A list containing the paragraphs in this container, in document order. |
| 84 | |
| 85 | Read-only. |
| 86 | """ |
| 87 | return [Paragraph(p, self) for p in self._element.p_lst] |
| 88 | |
| 89 | @property |
| 90 | def tables(self): |