|FillFormat| instance for this object, providing access to fill properties such as fill color.
(self)
| 23 | |
| 24 | @lazyproperty |
| 25 | def fill(self): |
| 26 | """ |
| 27 | |FillFormat| instance for this object, providing access to fill |
| 28 | properties such as fill color. |
| 29 | """ |
| 30 | spPr = self._element.get_or_add_spPr() |
| 31 | return FillFormat.from_fill_parent(spPr) |
| 32 | |
| 33 | @lazyproperty |
| 34 | def line(self): |
nothing calls this directly
no test coverage detected