MCPcopy Index your code
hub / github.com/python/cpython / window_configure

Method window_configure

Lib/tkinter/__init__.py:4261–4267  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

_configureMethod · 0.45

Tested by

no test coverage detected