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

Method itemconfigure

Lib/tkinter/__init__.py:3181–3186  ·  view source on GitHub ↗

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

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

Source from the content-addressed store, hash-verified

3179 (self._w, 'itemcget') + (tagOrId, '-'+option))
3180
3181 def itemconfigure(self, tagOrId, cnf=None, **kw):
3182 """Query or modify the configuration options of an item TAGORID.
3183
3184 Similar to configure() except that it applies to the specified item.
3185 """
3186 return self._configure(('itemconfigure', tagOrId), cnf, kw)
3187
3188 itemconfig = itemconfigure
3189

Callers 3

_drawpolyMethod · 0.45
_drawlineMethod · 0.45
_configure_canvasMethod · 0.45

Calls 1

_configureMethod · 0.45

Tested by

no test coverage detected