`` `` element, container for the XML of a DrawingML object.
| 59 | |
| 60 | |
| 61 | class CT_GraphicalObjectData(BaseOxmlElement): |
| 62 | """``<a:graphicData>`` element, container for the XML of a DrawingML object.""" |
| 63 | |
| 64 | pic: CT_Picture = ZeroOrOne("pic:pic") # pyright: ignore[reportAssignmentType] |
| 65 | uri: str = RequiredAttribute("uri", XsdToken) # pyright: ignore[reportAssignmentType] |
| 66 | |
| 67 | |
| 68 | class CT_Inline(BaseOxmlElement): |
nothing calls this directly
no test coverage detected
searching dependent graphs…