Set spacing to `value` points. A ./a:spcPct child is removed if present.
(self, value: Length)
| 596 | spcPct.val = value |
| 597 | |
| 598 | def set_spcPts(self, value: Length): |
| 599 | """Set spacing to `value` points. A ./a:spcPct child is removed if present.""" |
| 600 | self._remove_spcPct() |
| 601 | spcPts = self.get_or_add_spcPts() |
| 602 | spcPts.val = value |
| 603 | |
| 604 | |
| 605 | class CT_TextSpacingPercent(BaseOxmlElement): |
no outgoing calls
no test coverage detected