Used for `` `` element, and perhaps others. Specifies an x, y coordinate (point).
| 186 | |
| 187 | |
| 188 | class CT_Point2D(BaseOxmlElement): |
| 189 | """Used for ``<a:off>`` element, and perhaps others. |
| 190 | |
| 191 | Specifies an x, y coordinate (point). |
| 192 | """ |
| 193 | |
| 194 | x = RequiredAttribute("x", ST_Coordinate) |
| 195 | y = RequiredAttribute("y", ST_Coordinate) |
| 196 | |
| 197 | |
| 198 | class CT_PositiveSize2D(BaseOxmlElement): |
nothing calls this directly
no test coverage detected
searching dependent graphs…