Generate each `a:tc` element in topmost row of range.
(self)
| 526 | ) |
| 527 | |
| 528 | def iter_top_row_tcs(self): |
| 529 | """Generate each `a:tc` element in topmost row of range.""" |
| 530 | tr = self._tbl.tr_lst[self._top] |
| 531 | for tc in tr.tc_lst[self._left : self._right]: |
| 532 | yield tc |
| 533 | |
| 534 | def move_content_to_origin(self): |
| 535 | """Move all paragraphs in range to origin cell.""" |
no outgoing calls