Query or modify the configuration options of the widget. If no arguments are specified, return a dictionary describing all of the available options for the widget. If an option name is specified, then return a tuple describing the one named option. If one o
(self, cnf=None, **kw)
| 1840 | # These used to be defined in Widget: |
| 1841 | |
| 1842 | def configure(self, cnf=None, **kw): |
| 1843 | """Query or modify the configuration options of the widget. |
| 1844 | |
| 1845 | If no arguments are specified, return a dictionary describing |
| 1846 | all of the available options for the widget. |
| 1847 | |
| 1848 | If an option name is specified, then return a tuple describing |
| 1849 | the one named option. |
| 1850 | |
| 1851 | If one or more keyword arguments are specified or a dictionary |
| 1852 | is specified, then modify the widget option(s) to have the given |
| 1853 | value(s). |
| 1854 | """ |
| 1855 | return self._configure('configure', cnf, kw) |
| 1856 | |
| 1857 | config = configure |
| 1858 |
no test coverage detected