Returns the name of the element at position x, y, or the empty string if the coordinates are outside the window.
(self, x, y)
| 653 | |
| 654 | |
| 655 | def identify(self, x, y): |
| 656 | """Returns the name of the element at position x, y, or the |
| 657 | empty string if the coordinates are outside the window.""" |
| 658 | return self.tk.call(self._w, "identify", x, y) |
| 659 | |
| 660 | |
| 661 | def validate(self): |