Sequence of |Run| instances corresponding to the elements in this paragraph.
(self)
| 123 | |
| 124 | @property |
| 125 | def runs(self) -> List[Run]: |
| 126 | """Sequence of |Run| instances corresponding to the <w:r> elements in this |
| 127 | paragraph.""" |
| 128 | return [Run(r, self) for r in self._p.r_lst] |
| 129 | |
| 130 | @property |
| 131 | def style(self) -> ParagraphStyle | None: |