Return the value of OPTION for a menu item at INDEX.
(self, index, option)
| 3646 | self.tk.call(self._w, 'delete', index1, index2) |
| 3647 | |
| 3648 | def entrycget(self, index, option): |
| 3649 | """Return the value of OPTION for a menu item at INDEX.""" |
| 3650 | return self.tk.call(self._w, 'entrycget', index, '-' + option) |
| 3651 | |
| 3652 | def entryconfigure(self, index, cnf=None, **kw): |
| 3653 | """Query or modify the configuration options of a menu item at INDEX. |