Return a |FillFormat| instance initialized to the settings contained in *eg_fillProperties_parent*, which must be an element having EG_FillProperties in its child element sequence in the XML schema.
(cls, eg_fillProperties_parent: BaseOxmlElement)
| 37 | |
| 38 | @classmethod |
| 39 | def from_fill_parent(cls, eg_fillProperties_parent: BaseOxmlElement) -> FillFormat: |
| 40 | """ |
| 41 | Return a |FillFormat| instance initialized to the settings contained |
| 42 | in *eg_fillProperties_parent*, which must be an element having |
| 43 | EG_FillProperties in its child element sequence in the XML schema. |
| 44 | """ |
| 45 | fill_elm = eg_fillProperties_parent.eg_fillProperties |
| 46 | fill = _Fill(fill_elm) |
| 47 | fill_format = cls(eg_fillProperties_parent, fill) |
| 48 | return fill_format |
| 49 | |
| 50 | @property |
| 51 | def back_color(self): |