Used for `` `` element, and perhaps others. Specifies the id and name of a DrawingML drawing.
| 119 | |
| 120 | |
| 121 | class CT_NonVisualDrawingProps(BaseOxmlElement): |
| 122 | """Used for ``<wp:docPr>`` element, and perhaps others. |
| 123 | |
| 124 | Specifies the id and name of a DrawingML drawing. |
| 125 | """ |
| 126 | |
| 127 | id = RequiredAttribute("id", ST_DrawingElementId) |
| 128 | name = RequiredAttribute("name", XsdString) |
| 129 | |
| 130 | |
| 131 | class CT_NonVisualPictureProperties(BaseOxmlElement): |
nothing calls this directly
no test coverage detected
searching dependent graphs…