Return the resource value for an OPTION for item TAGORID.
(self, tagOrId, option)
| 2962 | self.tk.call((self._w, 'insert') + args) |
| 2963 | |
| 2964 | def itemcget(self, tagOrId, option): |
| 2965 | """Return the resource value for an OPTION for item TAGORID.""" |
| 2966 | return self.tk.call( |
| 2967 | (self._w, 'itemcget') + (tagOrId, '-'+option)) |
| 2968 | |
| 2969 | def itemconfigure(self, tagOrId, cnf=None, **kw): |
| 2970 | """Configure resources of an item TAGORID. |