1ttk::frame(n) Tk Themed Widget ttk::frame(n)
2
3
4
5______________________________________________________________________________
6
8 ttk::frame - Simple container widget
9
11 ttk::frame pathName ?options?
12______________________________________________________________________________
13
15 A ttk::frame widget is a container, used to group other widgets
16 together.
17
19 -class -cursor -padding-style
20 -takefocus
21
22 See the ttk_widget manual entry for details on the standard options.
23
25 Command-Line Name:-borderwidth
26 Database Name: borderWidth
27 Database Class: BorderWidth
28
29 The desired width of the widget border. Defaults to 0.
30
31 Command-Line Name:-relief
32 Database Name: relief
33 Database Class: Relief
34
35 One of the standard Tk border styles: flat, groove, raised,
36 ridge, solid, or sunken. Defaults to flat.
37
38 Command-Line Name:-width
39 Database Name: width
40 Database Class: Width
41
42 If specified, the widget's requested width in pixels.
43
44 Command-Line Name:-height
45 Database Name: height
46 Database Class: Height
47
48 If specified, the widget's requested height in pixels.
49
51 Supports the standard widget commands configure, cget, identify,
52 instate, and state; see ttk::widget(n).
53
55 Note that if the pack, grid, or other geometry managers are used to
56 manage the children of the frame, by the GM's requested size will nor‐
57 mally take precedence over the frame widget's -width and -height
58 options. pack propagate and grid propagate can be used to change this.
59
61 ttk::widget(n), ttk::labelframe(n), frame(n)
62
64 widget, frame, container
65
66
67
68Tk 8.5 ttk::frame(n)