`p:sldId` element. Direct child of `p:sldIdLst` that contains an `rId` reference to a slide in the presentation.
| 39 | |
| 40 | |
| 41 | class CT_SlideId(BaseOxmlElement): |
| 42 | """`p:sldId` element. |
| 43 | |
| 44 | Direct child of `p:sldIdLst` that contains an `rId` reference to a slide in the presentation. |
| 45 | """ |
| 46 | |
| 47 | id: int = RequiredAttribute("id", ST_SlideId) # pyright: ignore[reportAssignmentType] |
| 48 | rId: str = RequiredAttribute("r:id", XsdString) # pyright: ignore[reportAssignmentType] |
| 49 | |
| 50 | |
| 51 | class CT_SlideIdList(BaseOxmlElement): |
nothing calls this directly
no test coverage detected
searching dependent graphs…