MCPcopy Index your code
hub / github.com/python/cpython / identify

Method identify

Lib/tkinter/ttk.py:1287–1291  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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):

Callers 4

identify_rowMethod · 0.95
identify_columnMethod · 0.95
identify_regionMethod · 0.95
identify_elementMethod · 0.95

Calls 1

callMethod · 0.45

Tested by

no test coverage detected