You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| bool | enter_submits | if True, the Window.read call will return is enter key is pressed in this element |
6300
6301
| bool | disabled | set disable state |
6301
6302
| bool | autoscroll | If True the contents of the element will automatically scroll as more data added to the end |
6303
+
| bool | autoscroll_only_at_bottom | If True the contents of the element will automatically scroll only if the scrollbar is at the bottom of the multiline |
6302
6304
| int | border_width | width of border around element in pixels |
6303
6305
| (int, int) or (None, None) or int | size | (w, h) w=characters-wide, h=rows-high. If an int instead of a tuple is supplied, then height is auto-set to 1 |
6304
6306
| (int, int) or (None, None) or int | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used |
@@ -7235,6 +7237,7 @@ Output(size = (None, None),
7235
7237
text_color = None,
7236
7238
pad = None,
7237
7239
p = None,
7240
+
autoscroll_only_at_bottom = False,
7238
7241
echo_stdout_stderr = False,
7239
7242
font = None,
7240
7243
tooltip = None,
@@ -7260,31 +7263,32 @@ Parameter Descriptions:
7260
7263
7261
7264
|Type|Name|Meaning|
7262
7265
|--|--|--|
7263
-
| (int, int) or (None, None) or int | size | (w, h) w=characters-wide, h=rows-high. If an int instead of a tuple is supplied, then height is auto-set to 1 |
7264
-
| (int, int) or (None, None) or int | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used |
7265
-
| str | background_color | color of background |
7266
-
| str | text_color | color of the text |
7267
-
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) or int | pad | Amount of padding to put around element in pixels (left/right, top/bottom) or ((left, right), (top, bottom)) or an int. If an int, then it's converted into a tuple (int, int) |
7268
-
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) or int | p | Same as pad parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, pad will be used |
7269
-
| bool | echo_stdout_stderr | If True then output to stdout will be output to this element AND also to the normal console location |
7270
-
| (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
7271
-
| str | tooltip | text, that will appear when mouse hovers over the element |
7272
-
| str or int or tuple or object | key | Used with window.find_element and with return values to uniquely identify this element to uniquely identify this element |
7273
-
| str or int or tuple or object | k | Same as the Key. You can use either k or key. Which ever is set will be used. |
7274
-
| List[List[ List[str] or str ]] | right_click_menu | A list of lists of Menu items to show when this element is right clicked. See user docs for exact format. |
7275
-
| bool | expand_x | If True the element will automatically expand in the X direction to fill available space |
7276
-
| bool | expand_y | If True the element will automatically expand in the Y direction to fill available space |
7277
-
| bool | visible | set visibility state of the element |
7278
-
| Any | metadata | User metadata that can be set to ANYTHING |
7279
-
| bool | wrap_lines | If True, the lines will be wrapped automatically. Other parms affect this setting, but this one will override them all. Default is it does nothing and uses previous settings for wrapping. |
7280
-
| bool | horizontal_scroll | Controls if a horizontal scrollbar should be shown. If True, then line wrapping will be off by default |
7281
-
| str | sbar_trough_color | Scrollbar color of the trough |
7282
-
| str | sbar_background_color | Scrollbar color of the background of the arrow buttons at the ends AND the color of the "thumb" (the thing you grab and slide). Switches to arrow color when mouse is over |
7283
-
| str | sbar_arrow_color | Scrollbar color of the arrow at the ends of the scrollbar (it looks like a button). Switches to background color when mouse is over |
7284
-
| int | sbar_width | Scrollbar width in pixels |
7285
-
| int | sbar_arrow_width | Scrollbar width of the arrow on the scrollbar. It will potentially impact the overall width of the scrollbar |
7286
-
| str | sbar_frame_color | Scrollbar Color of frame around scrollbar (available only on some ttk themes) |
7287
-
| str | sbar_relief | Scrollbar relief that will be used for the "thumb" of the scrollbar (the thing you grab that slides). Should be a constant that is defined at starting with "RELIEF_" - RELIEF_RAISED, RELIEF_SUNKEN, RELIEF_FLAT, RELIEF_RIDGE, RELIEF_GROOVE, RELIEF_SOLID |
7266
+
| (int, int) or (None, None) or int | size | (w, h) w=characters-wide, h=rows-high. If an int instead of a tuple is supplied, then height is auto-set to 1 |
7267
+
| (int, int) or (None, None) or int | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used |
7268
+
| str | background_color | color of background |
7269
+
| str | text_color | color of the text |
7270
+
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) or int | pad | Amount of padding to put around element in pixels (left/right, top/bottom) or ((left, right), (top, bottom)) or an int. If an int, then it's converted into a tuple (int, int) |
7271
+
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) or int | p | Same as pad parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, pad will be used |
7272
+
| bool | autoscroll_only_at_bottom | If True the contents of the element will automatically scroll only if the scrollbar is at the bottom of the multiline |
7273
+
| bool | echo_stdout_stderr | If True then output to stdout will be output to this element AND also to the normal console location |
7274
+
| (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
7275
+
| str | tooltip | text, that will appear when mouse hovers over the element |
7276
+
| str or int or tuple or object | key | Used with window.find_element and with return values to uniquely identify this element to uniquely identify this element |
7277
+
| str or int or tuple or object | k | Same as the Key. You can use either k or key. Which ever is set will be used. |
7278
+
| List[List[ List[str] or str ]] | right_click_menu | A list of lists of Menu items to show when this element is right clicked. See user docs for exact format. |
7279
+
| bool | expand_x | If True the element will automatically expand in the X direction to fill available space |
7280
+
| bool | expand_y | If True the element will automatically expand in the Y direction to fill available space |
7281
+
| bool | visible | set visibility state of the element |
7282
+
| Any | metadata | User metadata that can be set to ANYTHING |
7283
+
| bool | wrap_lines | If True, the lines will be wrapped automatically. Other parms affect this setting, but this one will override them all. Default is it does nothing and uses previous settings for wrapping. |
7284
+
| bool | horizontal_scroll | Controls if a horizontal scrollbar should be shown. If True, then line wrapping will be off by default |
7285
+
| str | sbar_trough_color | Scrollbar color of the trough |
7286
+
| str | sbar_background_color | Scrollbar color of the background of the arrow buttons at the ends AND the color of the "thumb" (the thing you grab and slide). Switches to arrow color when mouse is over |
7287
+
| str | sbar_arrow_color | Scrollbar color of the arrow at the ends of the scrollbar (it looks like a button). Switches to background color when mouse is over |
7288
+
| int | sbar_width | Scrollbar width in pixels |
7289
+
| int | sbar_arrow_width | Scrollbar width of the arrow on the scrollbar. It will potentially impact the overall width of the scrollbar |
7290
+
| str | sbar_frame_color | Scrollbar Color of frame around scrollbar (available only on some ttk themes) |
7291
+
| str | sbar_relief | Scrollbar relief that will be used for the "thumb" of the scrollbar (the thing you grab that slides). Should be a constant that is defined at starting with "RELIEF_" - RELIEF_RAISED, RELIEF_SUNKEN, RELIEF_FLAT, RELIEF_RIDGE, RELIEF_GROOVE, RELIEF_SOLID |
0 commit comments