Return the resource value of a menu item for OPTION at INDEX.
(self, index, option)
| 3439 | self.tk.call(self._w, 'delete', index1, index2) |
| 3440 | |
| 3441 | def entrycget(self, index, option): |
| 3442 | """Return the resource value of a menu item for OPTION at INDEX.""" |
| 3443 | return self.tk.call(self._w, 'entrycget', index, '-' + option) |
| 3444 | |
| 3445 | def entryconfigure(self, index, cnf=None, **kw): |
| 3446 | """Configure a menu item at INDEX.""" |