Version 4 of ttk::label

Updated 2014-05-03 15:05:12 by pooryorick

ttk::label , a Tk command, is the ttk analogue of label.

Documentation

official reference

Description

Kevin provides, on comp.lang.tcl, a working example of automatic text wrapping using a Tile label widget.

package require tile 
ttk::label .l -text {This is a very long line of text that I hope will 
dynamically wrap based upon the width of the widget.} -justify left -anchor w 
grid .l -sticky ew 
grid columnconfigure . 0 -weight 1 
bind .l <Configure> {%W configure -wraplength [winfo width %W]}