|FillFormat| instance for this cell. Provides access to fill properties such as foreground color.
(self)
| 189 | |
| 190 | @lazyproperty |
| 191 | def fill(self) -> FillFormat: |
| 192 | """|FillFormat| instance for this cell. |
| 193 | |
| 194 | Provides access to fill properties such as foreground color. |
| 195 | """ |
| 196 | tcPr = self._tc.get_or_add_tcPr() |
| 197 | return FillFormat.from_fill_parent(tcPr) |
| 198 | |
| 199 | @property |
| 200 | def is_merge_origin(self) -> bool: |
nothing calls this directly
no test coverage detected