(self, tagname, sequence=None, callback=None)
| 2040 | return self.viewTree.set(item, column, value) |
| 2041 | |
| 2042 | def tag_bind(self, tagname, sequence=None, callback=None): |
| 2043 | if DEBUG: |
| 2044 | print('ViewTree.tag_bind(', tagname, ',', sequence, ',', callback, ')', file=sys.stderr) |
| 2045 | return self.viewTree.tag_bind(tagname, sequence, callback) |
| 2046 | |
| 2047 | |
| 2048 | class ViewDetails(tkinter.Frame): |