MCPcopy Create free account
hub / github.com/scanny/python-pptx / CT_TextBody

Class CT_TextBody

lab/cust-elm-classes/main.py:205–214  ·  view source on GitHub ↗

custom element class

Source from the content-addressed store, hash-verified

203
204
205class 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'))
213 p = property(lambda self: _child_list(self, 'a:p'))
214 lstStyle = property(lambda self: _get_child_or_insert(self, 'a:lstStyle', 1))
215
216
217class CT_TextBodyProperties(ElementBase):

Callers

nothing calls this directly

Calls 3

_childFunction · 0.85
_child_listFunction · 0.85
_get_child_or_insertFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…