Used for `` `` element, and perhaps others later. Specifies the size of a DrawingML drawing.
| 196 | |
| 197 | |
| 198 | class CT_PositiveSize2D(BaseOxmlElement): |
| 199 | """Used for ``<wp:extent>`` element, and perhaps others later. |
| 200 | |
| 201 | Specifies the size of a DrawingML drawing. |
| 202 | """ |
| 203 | |
| 204 | cx: Length = RequiredAttribute( # pyright: ignore[reportAssignmentType] |
| 205 | "cx", ST_PositiveCoordinate |
| 206 | ) |
| 207 | cy: Length = RequiredAttribute( # pyright: ignore[reportAssignmentType] |
| 208 | "cy", ST_PositiveCoordinate |
| 209 | ) |
| 210 | |
| 211 | |
| 212 | class CT_PresetGeometry2D(BaseOxmlElement): |
nothing calls this directly
no test coverage detected
searching dependent graphs…