Configure an embedded window at INDEX.
(self, index, cnf=None, **kw)
| 4142 | return self.tk.call(self._w, 'window', 'cget', index, option) |
| 4143 | |
| 4144 | def window_configure(self, index, cnf=None, **kw): |
| 4145 | """Configure an embedded window at INDEX.""" |
| 4146 | return self._configure(('window', 'configure', index), cnf, kw) |
| 4147 | |
| 4148 | window_config = window_configure |
| 4149 |
nothing calls this directly
no test coverage detected