Returns the list of elements defined in the current theme.
(self)
| 447 | |
| 448 | |
| 449 | def element_names(self): |
| 450 | """Returns the list of elements defined in the current theme.""" |
| 451 | return tuple(n.lstrip('-') for n in self.tk.splitlist( |
| 452 | self.tk.call(self._name, "element", "names"))) |
| 453 | |
| 454 | |
| 455 | def element_options(self, elementname): |