MCPcopy Index your code
hub / github.com/RustPython/RustPython / itemconfigure

Method itemconfigure

Lib/tkinter/__init__.py:3098–3105  ·  view source on GitHub ↗

Configure resources of an item TAGORID. The values for resources are specified as keyword arguments. To get an overview about the allowed keyword arguments call the method without arguments.

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

Source from the content-addressed store, hash-verified

3096 (self._w, 'itemcget') + (tagOrId, '-'+option))
3097
3098 def itemconfigure(self, tagOrId, cnf=None, **kw):
3099 """Configure resources of an item TAGORID.
3100
3101 The values for resources are specified as keyword
3102 arguments. To get an overview about
3103 the allowed keyword arguments call the method without arguments.
3104 """
3105 return self._configure(('itemconfigure', tagOrId), cnf, kw)
3106
3107 itemconfig = itemconfigure
3108

Callers

nothing calls this directly

Calls 1

_configureMethod · 0.45

Tested by

no test coverage detected