Ttk Label widget displays a textual label and/or image.
| 711 | |
| 712 | |
| 713 | class Label(Widget): |
| 714 | """Ttk Label widget displays a textual label and/or image.""" |
| 715 | |
| 716 | def __init__(self, master=None, **kw): |
| 717 | """Construct a Ttk Label with parent master. |
| 718 | |
| 719 | STANDARD OPTIONS |
| 720 | |
| 721 | class, compound, cursor, image, style, takefocus, text, |
| 722 | textvariable, underline, width |
| 723 | |
| 724 | WIDGET-SPECIFIC OPTIONS |
| 725 | |
| 726 | anchor, background, font, foreground, justify, padding, |
| 727 | relief, text, wraplength |
| 728 | """ |
| 729 | Widget.__init__(self, master, "ttk::label", kw) |
| 730 | |
| 731 | |
| 732 | class Labelframe(Widget): |
no outgoing calls
no test coverage detected