custom element class
| 157 | |
| 158 | |
| 159 | class CT_RegularTextRun(ElementBase): |
| 160 | """<a:r> custom element class""" |
| 161 | def _init(self): |
| 162 | _required_child(self, 'a:t') |
| 163 | |
| 164 | # child accessors ----------------- |
| 165 | t = property(lambda self: _child(self, 'a:t')) |
| 166 | rPr = property(lambda self: _get_child_or_first(self, 'a:rPr')) |
| 167 | |
| 168 | |
| 169 | class CT_Shape(ElementBase): |
nothing calls this directly
no test coverage detected
searching dependent graphs…