1ttk::labelframe(n) Tk Themed Widget ttk::labelframe(n)
2
3
4
5______________________________________________________________________________
6
8 ttk::labelframe - Container widget with optional label
9
11 ttk::labelframe pathName ?options?
12______________________________________________________________________________
13
15 A ttk::labelframe widget is a container used to group other widgets
16 together. It has an optional label, which may be a plain text string
17 or another widget.
18
20 -class -cursor -padding-style
21 -takefocus
22
23 See the ttk_widget manual entry for details on the standard options.
24
26 Command-Line Name:-labelanchor
27 Database Name: labelAnchor
28 Database Class: LabelAnchor
29
30 Specifies where to place the label. Allowed values are (clock‐
31 wise from the top upper left corner): nw, n, ne, en, e, es, se,
32 s,sw, ws, w and wn. The default value is theme-dependent.
33
34 Command-Line Name:-text
35 Database Name: text
36 Database Class: Text
37
38 Specifies the text of the label.
39
40 Command-Line Name:-underline
41 Database Name: underline
42 Database Class: Underline
43
44 If set, specifies the integer index (0-based) of a character to
45 underline in the text string. The underlined character is used
46 for mnemonic activation. Mnemonic activation for a ttk::label‐
47 frame sets the keyboard focus to the first child of the
48 ttk::labelframe widget.
49
50 Command-Line Name:-labelwidget
51 Database Name: labelWidget
52 Database Class: LabelWidget
53
54 The name of a widget to use for the label. If set, overrides
55 the -text option. The -labelwidget must be a child of the
56 labelframe widget or one of the labelframe's ancestors, and must
57 belong to the same top-level widget as the labelframe.
58
59 Command-Line Name:-width
60 Database Name: width
61 Database Class: Width
62
63 If specified, the widget's requested width in pixels.
64
65 Command-Line Name:-height
66 Database Name: height
67 Database Class: Height
68
69 If specified, the widget's requested height in pixels. (See
70 ttk::frame(n) for further notes on -width and -height).
71
73 Supports the standard widget commands configure, cget, identify,
74 instate, and state; see ttk::widget(n).
75
77 ttk::widget(n), ttk::frame(n), labelframe(n)
78
80 widget, frame, container, label, groupbox
81
82
83
84Tk 8.5 ttk::labelframe(n)