Configure a menu item at INDEX.
(self, index, cnf=None, **kw)
| 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.""" |
| 3576 | return self._configure(('entryconfigure', index), cnf, kw) |
| 3577 | |
| 3578 | entryconfig = entryconfigure |
| 3579 |
nothing calls this directly
no test coverage detected