`p:sldLayoutIdLst` element, child of `p:sldMaster`. Contains references to the slide layouts that inherit from the slide master.
| 260 | |
| 261 | |
| 262 | class CT_SlideLayoutIdList(BaseOxmlElement): |
| 263 | """`p:sldLayoutIdLst` element, child of `p:sldMaster`. |
| 264 | |
| 265 | Contains references to the slide layouts that inherit from the slide master. |
| 266 | """ |
| 267 | |
| 268 | sldLayoutId_lst: list[CT_SlideLayoutIdListEntry] |
| 269 | |
| 270 | sldLayoutId = ZeroOrMore("p:sldLayoutId") |
| 271 | |
| 272 | |
| 273 | class CT_SlideLayoutIdListEntry(BaseOxmlElement): |
nothing calls this directly
no test coverage detected
searching dependent graphs…