`p:sldSz` element. Direct child of that contains the width and height of slides in the presentation.
| 116 | |
| 117 | |
| 118 | class CT_SlideSize(BaseOxmlElement): |
| 119 | """`p:sldSz` element. |
| 120 | |
| 121 | Direct child of <p:presentation> that contains the width and height of slides in the |
| 122 | presentation. |
| 123 | """ |
| 124 | |
| 125 | cx: Length = RequiredAttribute( # pyright: ignore[reportAssignmentType] |
| 126 | "cx", ST_SlideSizeCoordinate |
| 127 | ) |
| 128 | cy: Length = RequiredAttribute( # pyright: ignore[reportAssignmentType] |
| 129 | "cy", ST_SlideSizeCoordinate |
| 130 | ) |
nothing calls this directly
no test coverage detected
searching dependent graphs…