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

Method itemconfigure

Lib/tkinter/__init__.py:3552–3557  ·  view source on GitHub ↗

Query or modify the configuration options of an item at INDEX. Similar to configure() except that it applies to the specified item.

(self, index, cnf=None, **kw)

Source from the content-addressed store, hash-verified

3550 (self._w, 'itemcget') + (index, '-'+option))
3551
3552 def itemconfigure(self, index, cnf=None, **kw):
3553 """Query or modify the configuration options of an item at INDEX.
3554
3555 Similar to configure() except that it applies to the specified item.
3556 """
3557 return self._configure(('itemconfigure', index), cnf, kw)
3558
3559 itemconfig = itemconfigure
3560

Callers

nothing calls this directly

Calls 1

_configureMethod · 0.45

Tested by

no test coverage detected