`p:notes` element, root of a notes slide part.
| 140 | |
| 141 | |
| 142 | class CT_NotesSlide(_BaseSlideElement): |
| 143 | """`p:notes` element, root of a notes slide part.""" |
| 144 | |
| 145 | _tag_seq = ("p:cSld", "p:clrMapOvr", "p:extLst") |
| 146 | cSld: CT_CommonSlideData = OneAndOnlyOne("p:cSld") # pyright: ignore[reportAssignmentType] |
| 147 | del _tag_seq |
| 148 | |
| 149 | @classmethod |
| 150 | def new(cls) -> CT_NotesSlide: |
| 151 | """Return a new ``<p:notes>`` element based on the default template. |
| 152 | |
| 153 | Note that the template does not include placeholders, which must be subsequently cloned |
| 154 | from the notes master. |
| 155 | """ |
| 156 | return cast(CT_NotesSlide, parse_from_template("notes")) |
| 157 | |
| 158 | |
| 159 | class CT_Slide(_BaseSlideElement): |
nothing calls this directly
no test coverage detected
searching dependent graphs…