|FillFormat| instance for this font. Provides access to fill properties such as fill color.
(self)
| 311 | |
| 312 | @lazyproperty |
| 313 | def fill(self) -> FillFormat: |
| 314 | """|FillFormat| instance for this font. |
| 315 | |
| 316 | Provides access to fill properties such as fill color. |
| 317 | """ |
| 318 | return FillFormat.from_fill_parent(self._rPr) |
| 319 | |
| 320 | @property |
| 321 | def italic(self) -> bool | None: |
no test coverage detected