bind all cells
(self, sequence: str = None, command = None, add = True)
| 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: |
no outgoing calls
no test coverage detected