| 148 | |
| 149 | |
| 150 | class CT_PresetGeometry2D(ElementBase): |
| 151 | """<a:prstGeom>""" |
| 152 | # attributes ---------------------- |
| 153 | prst = property(lambda self: self.get('prst'), |
| 154 | lambda self, value: self.set('prst', value)) |
| 155 | # child accessors ----------------- |
| 156 | avLst = property(lambda self: _get_child_or_append(self, 'a:avLst')) |
| 157 | |
| 158 | |
| 159 | class CT_RegularTextRun(ElementBase): |
nothing calls this directly
no test coverage detected
searching dependent graphs…