Query or modify the configuration options of a menu item at INDEX. Similar to configure() except that it applies to the specified menu item.
(self, index, cnf=None, **kw)
| 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. |
| 3654 | |
| 3655 | Similar to configure() except that it applies to the specified |
| 3656 | menu item. |
| 3657 | """ |
| 3658 | return self._configure(('entryconfigure', index), cnf, kw) |
| 3659 | |
| 3660 | entryconfig = entryconfigure |
| 3661 |