The EMU equivalent of the centipoints value in `./a:spcAft/a:spcPts/@val`.
(self)
| 536 | |
| 537 | @property |
| 538 | def space_after(self) -> Length | None: |
| 539 | """The EMU equivalent of the centipoints value in `./a:spcAft/a:spcPts/@val`.""" |
| 540 | spcAft = self.spcAft |
| 541 | if spcAft is None: |
| 542 | return None |
| 543 | spcPts = spcAft.spcPts |
| 544 | if spcPts is None: |
| 545 | return None |
| 546 | return spcPts.val |
| 547 | |
| 548 | @space_after.setter |
| 549 | def space_after(self, value: Length | None): |
nothing calls this directly
no test coverage detected