`p:sldMasterIdLst` element. Child of `p:presentation` containing references to the slide masters that belong to the presentation.
| 95 | |
| 96 | |
| 97 | class CT_SlideMasterIdList(BaseOxmlElement): |
| 98 | """`p:sldMasterIdLst` element. |
| 99 | |
| 100 | Child of `p:presentation` containing references to the slide masters that belong to the |
| 101 | presentation. |
| 102 | """ |
| 103 | |
| 104 | sldMasterId_lst: list[CT_SlideMasterIdListEntry] |
| 105 | |
| 106 | sldMasterId = ZeroOrMore("p:sldMasterId") |
| 107 | |
| 108 | |
| 109 | class CT_SlideMasterIdListEntry(BaseOxmlElement): |
nothing calls this directly
no test coverage detected
searching dependent graphs…