A shape with its absolute position on the slide.
| 127 | |
| 128 | @dataclass |
| 129 | class ShapeWithPosition: |
| 130 | """A shape with its absolute position on the slide.""" |
| 131 | |
| 132 | shape: BaseShape |
| 133 | absolute_left: int # in EMUs |
| 134 | absolute_top: int # in EMUs |
| 135 | |
| 136 | |
| 137 | class ParagraphData: |
no outgoing calls
no test coverage detected