| 183 | |
| 184 | |
| 185 | class CT_ShapeNonVisual(ElementBase): |
| 186 | """<p:nvSpPr>""" |
| 187 | def _init(self): |
| 188 | _required_child(self, 'p:cNvPr') |
| 189 | _required_child(self, 'p:cNvSpPr') |
| 190 | _required_child(self, 'p:nvPr') |
| 191 | |
| 192 | # child accessors ----------------- |
| 193 | cNvPr = property(lambda self: _child(self, 'p:cNvPr')) |
| 194 | cNvSpPr = property(lambda self: _child(self, 'p:cNvSpPr')) |
| 195 | |
| 196 | |
| 197 | class CT_ShapeProperties(ElementBase): |
nothing calls this directly
no test coverage detected
searching dependent graphs…