`a:spcPct` element, specifying spacing in thousandths of a percent in its `val` attribute.
| 603 | |
| 604 | |
| 605 | class CT_TextSpacingPercent(BaseOxmlElement): |
| 606 | """`a:spcPct` element, specifying spacing in thousandths of a percent in its `val` attribute.""" |
| 607 | |
| 608 | val: float = RequiredAttribute( # pyright: ignore[reportAssignmentType] |
| 609 | "val", ST_TextSpacingPercentOrPercentString |
| 610 | ) |
| 611 | |
| 612 | |
| 613 | class CT_TextSpacingPoint(BaseOxmlElement): |
nothing calls this directly
no test coverage detected
searching dependent graphs…