Add a `` `` element at the end of the run, which Word interprets as a tab character.
(self)
| 81 | return InlineShape(inline) |
| 82 | |
| 83 | def add_tab(self) -> None: |
| 84 | """Add a ``<w:tab/>`` element at the end of the run, which Word interprets as a |
| 85 | tab character.""" |
| 86 | self._r.add_tab() |
| 87 | |
| 88 | def add_text(self, text: str): |
| 89 | """Returns a newly appended |_Text| object (corresponding to a new ``<w:t>`` |
no outgoing calls