Query or modify the configuration options of an embedded window at INDEX. Similar to configure() except that it applies to the specified embedded window.
(self, index, cnf=None, **kw)
| 4259 | return self.tk.call(self._w, 'window', 'cget', index, option) |
| 4260 | |
| 4261 | def window_configure(self, index, cnf=None, **kw): |
| 4262 | """Query or modify the configuration options of an embedded window at INDEX. |
| 4263 | |
| 4264 | Similar to configure() except that it applies to the specified |
| 4265 | embedded window. |
| 4266 | """ |
| 4267 | return self._configure(('window', 'configure', index), cnf, kw) |
| 4268 | |
| 4269 | window_config = window_configure |
| 4270 |
nothing calls this directly
no test coverage detected