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