MCPcopy Index your code
hub / github.com/rawpython/remi / item_at

Method item_at

remi/gui.py:3049–3056  ·  view source on GitHub ↗

Returns the TableItem instance at row, column cordinates Args: row (int): zero based index column (int): zero based index

(self, row, column)

Source from the content-addressed store, hash-verified

3047 instance.onclick.connect(self.children['0'].on_row_item_click)
3048
3049 def item_at(self, row, column):
3050 """Returns the TableItem instance at row, column cordinates
3051
3052 Args:
3053 row (int): zero based index
3054 column (int): zero based index
3055 """
3056 return self.children[str(row)].children[str(column)]
3057
3058 def item_coords(self, table_item):
3059 """Returns table_item's (row, column) cordinates.

Callers 1

fill_tableMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected