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

Method bind

CTkTable/ctktable.py:702–709  ·  view source on GitHub ↗

bind all cells

(self, sequence: str = None, command = None, add = True)

Source from the content-addressed store, hash-verified

700 return super().cget(param)
701
702 def bind(self, sequence: str = None, command = None, add = True):
703 """ bind all cells """
704 self.binded_objects.append([sequence, command, add])
705
706 super().bind(sequence, command, add)
707 for i in self.frame:
708 self.frame[i].bind(sequence, command, add)
709 self.inside_frame.bind(sequence, command, add)
710
711 def unbind(self, sequence: str = None, funcid: str = None):
712 for i in self.binded_objects:

Callers 2

draw_tableMethod · 0.80
dynamic_hoverMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected