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

Class CT_Point2D

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

Source from the content-addressed store, hash-verified

122
123
124class CT_Point2D(ElementBase):
125 """<a:off>"""
126 def _init(self):
127 _required_attribute(self, 'x', default='0')
128 _required_attribute(self, 'y', default='0')
129
130 # attribute accessors -------------
131 x = property(lambda self: self.get('x'),
132 lambda self, value: self.set('x', value))
133 y = property(lambda self: self.get('y'),
134 lambda self, value: self.set('y', value))
135
136
137class CT_PositiveSize2D(ElementBase):

Callers

nothing calls this directly

Calls 1

getMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…