class documentation

A Tkinter window used to display a text. ShowText is typically used by graphical tools to display help text, or similar information.

Method __init__ Undocumented
Method destroy Undocumented
Method find_dimentions Undocumented
Method mainloop Enter the Tkinter mainloop. This function must be called if this window is created from a non-interactive program (e.g. from a secript); otherwise, the window will close as soon as the script completes.
Instance Variable _top Undocumented
def __init__(self, root, title, text, width=None, height=None, **textbox_options): (source)

Undocumented

def destroy(self, *e): (source)

Undocumented

def find_dimentions(self, text, width, height): (source)

Undocumented

def mainloop(self, *args, **kwargs): (source)

Enter the Tkinter mainloop. This function must be called if this window is created from a non-interactive program (e.g. from a secript); otherwise, the window will close as soon as the script completes.

Undocumented