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)
| 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 |
no test coverage detected