Return the value of OPTION for item TAGORID.
(self, tagOrId, option)
| 3174 | self.tk.call((self._w, 'insert') + args) |
| 3175 | |
| 3176 | def itemcget(self, tagOrId, option): |
| 3177 | """Return the value of OPTION for item TAGORID.""" |
| 3178 | return self.tk.call( |
| 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. |