Returns a description of the specified component under the point given by x and y, or the empty string if no such component is present at that position.
(self, component, x, y)
| 1285 | |
| 1286 | |
| 1287 | def identify(self, component, x, y): |
| 1288 | """Returns a description of the specified component under the |
| 1289 | point given by x and y, or the empty string if no such component |
| 1290 | is present at that position.""" |
| 1291 | return self.tk.call(self._w, "identify", component, x, y) |
| 1292 | |
| 1293 | |
| 1294 | def identify_row(self, y): |
no test coverage detected