(self)
| 205 | class CT_TextBody(ElementBase): |
| 206 | """<p:txBody> custom element class""" |
| 207 | def _init(self): |
| 208 | _required_child(self, 'p:bodyPr') |
| 209 | _required_child(self, 'a:p') |
| 210 | |
| 211 | # child accessors ----------------- |
| 212 | bodyPr = property(lambda self: _child(self, 'p:bodyPr')) |
nothing calls this directly
no test coverage detected