@@ -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".
@@ -1515,23 +1515,24 @@ Layouts
1515
1515
A layout can be just ``None ``, if it takes no options, or a dict of
1516
1516
options specifying how to arrange the element. The layout mechanism
1517
1517
uses a simplified version of the pack geometry manager: given an
1518
- initial cavity, each element is allocated a parcel. Valid
1519
- options/values are:
1518
+ initial cavity, each element is allocated a parcel.
1520
1519
1521
- side: whichside
1520
+ The valid options/values are:
1521
+
1522
+ *side *: whichside
1522
1523
Specifies which side of the cavity to place the element; one of
1523
1524
top, right, bottom or left. If omitted, the element occupies the
1524
1525
entire cavity.
1525
1526
1526
- sticky: nswe
1527
+ * sticky * : nswe
1527
1528
Specifies where the element is placed inside its allocated parcel.
1528
1529
1529
- unit: 0 or 1
1530
+ * unit * : 0 or 1
1530
1531
If set to 1, causes the element and all of its descendants to be treated as
1531
1532
a single element for the purposes of :meth: `Widget.identify ` et al. It's
1532
1533
used for things like scrollbar thumbs with grips.
1533
1534
1534
- children: [sublayout... ]
1535
+ * children * : [sublayout... ]
1535
1536
Specifies a list of elements to place inside the element. Each
1536
1537
element is a tuple (or other sequence type) where the first item is
1537
1538
the layout name, and the other is a `Layout `_.
0 commit comments