Return a list of all option names of this widget.
(self)
| 1867 | self.configure({key: value}) |
| 1868 | |
| 1869 | def keys(self): |
| 1870 | """Return a list of all option names of this widget.""" |
| 1871 | splitlist = self.tk.splitlist |
| 1872 | return [splitlist(x)[0][1:] for x in |
| 1873 | splitlist(self.tk.call(self._w, 'configure'))] |
| 1874 | |
| 1875 | def __str__(self): |
| 1876 | """Return the window path name of this widget.""" |