MCPcopy Create free account
hub / github.com/Akascape/CTkTable / get

Method get

CTkTable/ctktable.py:565–570  ·  view source on GitHub ↗

get the required cell

(self, row=None, column=None)

Source from the content-addressed store, hash-verified

563 self.update_data()
564
565 def get(self, row=None, column=None):
566 """ get the required cell """
567 if row is not None and column is not None:
568 return self.data[row,column]["value"]
569 else:
570 return self.values
571
572 def get_selected_row(self):
573 """ Return the index and data of the selected row """

Callers 1

update_dataMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected