Здесь показаны различия между двумя версиями данной страницы.
| Предыдущая версия справа и слева Предыдущая версия Следующая версия | Предыдущая версия | ||
|
test:test [2020/02/20 00:16] werwolf |
test:test [2023/01/12 12:18] (текущий) |
||
|---|---|---|---|
| Строка 1: | Строка 1: | ||
| - | ^Sr.No.^Option & Description| | + | ^Sr.No.^Method & Description| |
| - | |1| \\ **bg** \\ \\ The default background color of the text widget. \\ | | + | |1| \\ **get()** \\ \\ Returns two numbers (a, b) describing the current position of the slider. The a value gives the position of the left or top edge of the slider, for horizontal and vertical scrollbars respectively; the b value gives the position of the right or bottom edge.| |
| - | |2| \\ **bd** \\ \\ The width of the border around the text widget. Default is 2 pixels. \\ | | + | |2| \\ **set ( first, last )** \\ \\ To connect a scrollbar to another widget w, set w's xscrollcommand or yscrollcommand to the scrollbar's set() method. The arguments have the same meaning as the values returned by the get() method.| |
| - | |3| \\ **cursor** \\ \\ The cursor that will appear when the mouse is over the text widget. \\ | | + | |
| - | |4| \\ **exportselection** \\ \\ Normally, text selected within a text widget is exported to be the selection in the window manager. Set exportselection = 0 if you don't want that behavior. \\ | | + | |
| - | |5| \\ **font** \\ \\ The default font for text inserted into the widget. \\ | | + | |
| - | |6| \\ **fg** \\ \\ The color used for text (and bitmaps) within the widget. You can change the color for tagged regions; this option is just the default. \\ | | + | |
| - | |7| \\ **height** \\ \\ The height of the widget in lines (not pixels!), measured according to the current font size. \\ | | + | |
| - | |8| \\ **highlightbackground** \\ \\ The color of the focus highlight when the text widget does not have focus. \\ | | + | |
| - | |9| \\ **highlightcolor** \\ \\ The color of the focus highlight when the text widget has the focus. \\ | | + | |
| - | |10| \\ **highlightthickness** \\ \\ The thickness of the focus highlight. Default is 1. Set highlightthickness = 0 to suppress display of the focus highlight. \\ | | + | |
| - | |11| \\ **insertbackground** \\ \\ The color of the insertion cursor. Default is black. \\ | | + | |
| - | |12| \\ **insertborderwidth** \\ \\ Size of the 3-D border around the insertion cursor. Default is 0. \\ | | + | |
| - | |13| \\ **insertofftime** \\ \\ The number of milliseconds the insertion cursor is off during its blink cycle. Set this option to zero to suppress blinking. Default is 300. \\ | | + | |
| - | |14| \\ **insertontime** \\ \\ The number of milliseconds the insertion cursor is on during its blink cycle. Default is 600. \\ | | + | |
| - | |15| \\ **insertwidth** \\ \\ Width of the insertion cursor (its height is determined by the tallest item in its line). Default is 2 pixels. \\ | | + | |
| - | |16| \\ **padx** \\ \\ The size of the internal padding added to the left and right of the text area. Default is one pixel. \\ | | + | |
| - | |17| \\ **pady** \\ \\ The size of the internal padding added above and below the text area. Default is one pixel. \\ | | + | |
| - | |18| \\ **relief** \\ \\ The 3-D appearance of the text widget. Default is relief = SUNKEN. \\ | | + | |
| - | |19| \\ **selectbackground** \\ \\ The background color to use displaying selected text. \\ | | + | |
| - | |20| \\ **selectborderwidth** \\ \\ The width of the border to use around selected text. \\ | | + | |
| - | |21| \\ **spacing1** \\ \\ This option specifies how much extra vertical space is put above each line of text. If a line wraps, this space is added only before the first line it occupies on the display. Default is 0. \\ | | + | |
| - | |22| \\ **spacing2** \\ \\ This option specifies how much extra vertical space to add between displayed lines of text when a logical line wraps. Default is 0. \\ | | + | |
| - | |23| \\ **spacing3** \\ \\ This option specifies how much extra vertical space is added below each line of text. If a line wraps, this space is added only after the last line it occupies on the display. Default is 0. \\ | | + | |
| - | |24| \\ **state** \\ \\ Normally, text widgets respond to keyboard and mouse events; set state = NORMAL to get this behavior. If you set state = DISABLED, the text widget will not respond, and you won't be able to modify its contents programmatically either. \\ | | + | |
| - | |25| \\ **tabs** \\ \\ This option controls how tab characters position text. \\ | | + | |
| - | |26| \\ **width** \\ \\ The width of the widget in characters (not pixels!), measured according to the current font size. \\ | | + | |
| - | |27| \\ **wrap** \\ \\ This option controls the display of lines that are too wide. Set wrap = WORD and it will break the line after the last word that will fit. With the default behavior, wrap = CHAR, any line that gets too long will be broken at any character. \\ | | + | |
| - | |28| \\ **xscrollcommand** \\ \\ To make the text widget horizontally scrollable, set this option to the set() method of the horizontal scrollbar. \\ | | + | |
| - | |29| \\ **yscrollcommand** \\ \\ To make the text widget vertically scrollable, set this option to the set() method of the vertical scrollbar. \\ | | + | |
| \\ | \\ | ||