Return a newly appended `a:r` element.
(self, text: str | None = None)
| 416 | return self._add_br() |
| 417 | |
| 418 | def add_r(self, text: str | None = None) -> CT_RegularTextRun: |
| 419 | """Return a newly appended `a:r` element.""" |
| 420 | r = self._add_r() |
| 421 | if text: |
| 422 | r.text = text |
| 423 | return r |
| 424 | |
| 425 | def append_text(self, text: str): |
| 426 | """Append `a:r` and `a:br` elements to `p` based on `text`. |
no outgoing calls
no test coverage detected