module documentation

Tkinter widgets for displaying multi-column listboxes and tables.

Class MultiListbox A multi-column listbox, where the current selection applies to an entire row. Based on the MultiListbox Tkinter widget recipe from the Python Cookbook (http://code.activestate.com/recipes/52266/)
Class Table A display widget for a table of values, based on a MultiListbox widget. For many purposes, Table can be treated as a list-of-lists. E.g., table[i] is a list of the values for row i; and table.append(row) adds a new row with the given lits of values...
Function demo Undocumented
def demo(): (source) ΒΆ

Undocumented