Return the resource value of a menu item for OPTION at INDEX.
(self, index, option)
| 3568 | self.tk.call(self._w, 'delete', index1, index2) |
| 3569 | |
| 3570 | def entrycget(self, index, option): |
| 3571 | """Return the resource value of a menu item for OPTION at INDEX.""" |
| 3572 | return self.tk.call(self._w, 'entrycget', index, '-' + option) |
| 3573 | |
| 3574 | def entryconfigure(self, index, cnf=None, **kw): |
| 3575 | """Configure a menu item at INDEX.""" |