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 -takefocus
20 -style
21
22 See the ttk_widget manual entry for details on the standard options.
23
25 [-borderwidth borderWidth] The desired width of the widget border.
26 Defaults to 0. [-relief relief] One of the standard Tk border styles:
27 flat, groove, raised, ridge, solid, or sunken. Defaults to flat.
28 [-padding padding] Additional padding to include inside the border.
29 [-width width] If specified, the widget's requested width in pixels.
30 [-height height] If specified, the widget's requested height in pixels.
31
33 Supports the standard widget commands configure, cget, identify,
34 instate, and state; see ttk::widget(n).
35
37 Note that if the pack, grid, or other geometry managers are used to
38 manage the children of the frame, by the GM's requested size will nor‐
39 mally take precedence over the frame widget's -width and -height
40 options. pack propagate and grid propagate can be used to change this.
41
43 ttk::widget(n), ttk::labelframe(n), frame(n)
44
46 widget, frame, container
47
48
49
50Tk 8.5 ttk::frame(n)