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

Method itemconfigure

Lib/tkinter/__init__.py:3471–3479  ·  view source on GitHub ↗

Configure resources of an ITEM. The values for resources are specified as keyword arguments. To get an overview about the allowed keyword arguments call the method without arguments. Valid resource names: background, bg, foreground, fg, selectbackground, sele

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

Source from the content-addressed store, hash-verified

3469 (self._w, 'itemcget') + (index, '-'+option))
3470
3471 def itemconfigure(self, index, cnf=None, **kw):
3472 """Configure resources of an ITEM.
3473
3474 The values for resources are specified as keyword arguments.
3475 To get an overview about the allowed keyword arguments
3476 call the method without arguments.
3477 Valid resource names: background, bg, foreground, fg,
3478 selectbackground, selectforeground."""
3479 return self._configure(('itemconfigure', index), cnf, kw)
3480
3481 itemconfig = itemconfigure
3482

Callers

nothing calls this directly

Calls 1

_configureMethod · 0.45

Tested by

no test coverage detected