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)
| 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 |
nothing calls this directly
no test coverage detected