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

Class CT_TextBodyProperties

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

custom element class

Source from the content-addressed store, hash-verified

215
216
217class CT_TextBodyProperties(ElementBase):
218 """<a:bodyPr> custom element class"""
219 # child accessors -----------------
220 spAutoFit = property(lambda self: _get_child_or_append(self, 'a:spAutoFit'))
221
222 # attribute accessors -------------
223 wrap = property(lambda self: self.get('wrap'),
224 lambda self, value: self.set('wrap', value))
225 rtlCol = property(lambda self: self.get('rtlCol'),
226 lambda self, value: self.set('rtlCol', value))
227 anchor = property(lambda self: self.get('anchor'),
228 lambda self, value: self.set('anchor', value))
229 anchorCtr = property(lambda self: self.get('anchorCtr'),
230 lambda self, value: self.set('anchorCtr', value))
231
232
233class CT_TextCharacterProperties(ElementBase):

Callers

nothing calls this directly

Calls 2

_get_child_or_appendFunction · 0.85
getMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…