Style object this style inherits from or |None| if this style is not based on another style.
(self)
| 170 | |
| 171 | @property |
| 172 | def base_style(self): |
| 173 | """Style object this style inherits from or |None| if this style is not based on |
| 174 | another style.""" |
| 175 | base_style = self._element.base_style |
| 176 | if base_style is None: |
| 177 | return None |
| 178 | return StyleFactory(base_style) |
| 179 | |
| 180 | @base_style.setter |
| 181 | def base_style(self, style): |
nothing calls this directly
no test coverage detected