@@ -986,19 +986,19 @@ ttk.Treeview
986
986
987
987
The valid options/values are:
988
988
989
- id
989
+ * id *
990
990
Returns the column name. This is a read-only option.
991
- anchor: One of the standard Tk anchor values.
991
+ * anchor * : One of the standard Tk anchor values.
992
992
Specifies how the text in this column should be aligned with respect
993
993
to the cell.
994
- minwidth: width
994
+ * minwidth * : width
995
995
The minimum width of the column in pixels. The treeview widget will
996
996
not make the column any smaller than specified by this option when
997
997
the widget is resized or the user drags a column.
998
- stretch: ``True ``/``False ``
998
+ * stretch * : ``True ``/``False ``
999
999
Specifies whether the column's width should be adjusted when
1000
1000
the widget is resized.
1001
- width: width
1001
+ * width * : width
1002
1002
The width of the column in pixels.
1003
1003
1004
1004
To configure the tree column, call this with column = "#0"
@@ -1041,14 +1041,14 @@ ttk.Treeview
1041
1041
1042
1042
The valid options/values are:
1043
1043
1044
- text: text
1044
+ * text * : text
1045
1045
The text to display in the column heading.
1046
- image: imageName
1046
+ * image * : imageName
1047
1047
Specifies an image to display to the right of the column heading.
1048
- anchor: anchor
1048
+ * anchor * : anchor
1049
1049
Specifies how the heading text should be aligned. One of the standard
1050
1050
Tk anchor values.
1051
- command: callback
1051
+ * command * : callback
1052
1052
A callback to be invoked when the heading label is pressed.
1053
1053
1054
1054
To configure the tree column heading, call this with column = "#0".
@@ -1573,23 +1573,24 @@ Layouts
1573
1573
A layout can be just ``None ``, if it takes no options, or a dict of
1574
1574
options specifying how to arrange the element. The layout mechanism
1575
1575
uses a simplified version of the pack geometry manager: given an
1576
- initial cavity, each element is allocated a parcel. Valid
1577
- options/values are:
1576
+ initial cavity, each element is allocated a parcel.
1578
1577
1579
- side: whichside
1578
+ The valid options/values are:
1579
+
1580
+ *side *: whichside
1580
1581
Specifies which side of the cavity to place the element; one of
1581
1582
top, right, bottom or left. If omitted, the element occupies the
1582
1583
entire cavity.
1583
1584
1584
- sticky: nswe
1585
+ * sticky * : nswe
1585
1586
Specifies where the element is placed inside its allocated parcel.
1586
1587
1587
- unit: 0 or 1
1588
+ * unit * : 0 or 1
1588
1589
If set to 1, causes the element and all of its descendants to be treated as
1589
1590
a single element for the purposes of :meth: `Widget.identify ` et al. It's
1590
1591
used for things like scrollbar thumbs with grips.
1591
1592
1592
- children: [sublayout... ]
1593
+ * children * : [sublayout... ]
1593
1594
Specifies a list of elements to place inside the element. Each
1594
1595
element is a tuple (or other sequence type) where the first item is
1595
1596
the layout name, and the other is a `Layout `_.
0 commit comments