Post the menu at position X,Y with entry ENTRY.
(self, x, y, entry="")
| 3572 | Widget.__init__(self, master, 'menu', cnf, kw) |
| 3573 | |
| 3574 | def tk_popup(self, x, y, entry=""): |
| 3575 | """Post the menu at position X,Y with entry ENTRY.""" |
| 3576 | self.tk.call('tk_popup', self._w, x, y, entry) |
| 3577 | |
| 3578 | def activate(self, index): |
| 3579 | """Activate entry at INDEX.""" |
no test coverage detected