MCPcopy Create free account
hub / github.com/scanny/python-pptx / space_after

Method space_after

src/pptx/oxml/text.py:538–546  ·  view source on GitHub ↗

The EMU equivalent of the centipoints value in `./a:spcAft/a:spcPts/@val`.

(self)

Source from the content-addressed store, hash-verified

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):

Callers

nothing calls this directly

Calls 1

set_spcPtsMethod · 0.80

Tested by

no test coverage detected