Move all paragraphs in range to origin cell.
(self)
| 532 | yield tc |
| 533 | |
| 534 | def move_content_to_origin(self): |
| 535 | """Move all paragraphs in range to origin cell.""" |
| 536 | tcs = list(self.iter_tcs()) |
| 537 | origin_tc = tcs[0] |
| 538 | for spanned_tc in tcs[1:]: |
| 539 | origin_tc.append_ps_from(spanned_tc) |
| 540 | |
| 541 | @lazyproperty |
| 542 | def _bottom(self): |