The UI name of this style.
(self)
| 87 | |
| 88 | @property |
| 89 | def name(self): |
| 90 | """The UI name of this style.""" |
| 91 | name = self._element.name_val |
| 92 | if name is None: |
| 93 | return None |
| 94 | return BabelFish.internal2ui(name) |
| 95 | |
| 96 | @name.setter |
| 97 | def name(self, value): |
nothing calls this directly
no test coverage detected