MCPcopy Index your code
hub / github.com/PySimpleGUI/PySimpleGUI / _GetElementAtLocation

Method _GetElementAtLocation

PySimpleGUI/PySimpleGUI.py:7467–7480  ·  view source on GitHub ↗

Not user callable. Used to find the Element at a row, col position within the layout :param location: (row, column) position of the element to find in layout :type location: (int, int) :return: The element found at the location :rtype: (Ele

(self, location)

Source from the content-addressed store, hash-verified

7465 return self
7466
7467 def _GetElementAtLocation(self, location):
7468 """
7469 Not user callable. Used to find the Element at a row, col position within the layout
7470
7471 :param location: (row, column) position of the element to find in layout
7472 :type location: (int, int)
7473 :return: The element found at the location
7474 :rtype: (Element)
7475 """
7476
7477 (row_num, col_num) = location
7478 row = self.Rows[row_num]
7479 element = row[col_num]
7480 return element
7481
7482 def select(self):
7483 """

Callers 1

_find_targetMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected