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