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