Add a binding to this table's main frame that will call ``func`` in response to the event sequence.
(self, sequence=None, func=None, add=None)
| 716 | self._mlb.focus() |
| 717 | |
| 718 | def bind(self, sequence=None, func=None, add=None): |
| 719 | """Add a binding to this table's main frame that will call |
| 720 | ``func`` in response to the event sequence.""" |
| 721 | self._mlb.bind(sequence, func, add) |
| 722 | |
| 723 | def rowconfigure(self, row_index, cnf={}, **kw): |
| 724 | """:see: ``MultiListbox.rowconfigure()``""" |
no outgoing calls
no test coverage detected