Giáo Trình How To Use AutoIt A Professional Manner part 133
lượt xem 10
download
Tham khảo tài liệu 'giáo trình how to use autoit a professional manner part 133', công nghệ thông tin, kỹ thuật lập trình phục vụ nhu cầu học tập, nghiên cứu và làm việc hiệu quả
Bình luận(0) Đăng nhập để gửi bình luận!
Nội dung Text: Giáo Trình How To Use AutoIt A Professional Manner part 133
- Push Button Styles Value Description #include see GUICtrlCreateButton, Default/forced GUICtrlCreateCheckbox, GUICtrlCreateRadio functions. Places the text at the bottom of the button $BS_BOTTOM 0x0800 rectangle. Centers the text horizontally in the button $BS_CENTER 0x0300 rectangle. Creates a push button with a heavy black border. If the button is in a dialog box, the user can select the button by pressing the $BS_DEFPUSHBUTTON 0x0001 ENTER key, even when the button does not have the input focus. This style is useful for enabling the user to quickly select the most likely option, or default. Wraps the button text to multiple lines if the $BS_MULTILINE 0x2000 text string is too long to fit on a single line in the button rectangle. $BS_TOP 0x0400 Places text at the top of the button rectangle. Vertically centers text in the button $BS_VCENTER 0x0C00 rectangle. $BS_ICON 0x0040 Specifies that the button displays an icon. $BS_BITMAP 0x0080 Specifies that the button displays a bitmap. Specifies that the button is two-dimensional; $BS_FLAT 0x8000 it does not use the default shading to create a 3-D image. Enables a button to send BN_KILLFOCUS and BN_SETFOCUS notification messages to its parent window. Note that buttons send the BN_CLICKED notification message $BS_NOTIFY 0x4000 regardless of whether it has this style. To get BN_DBLCLK notification messages, the button must have the BS_RADIOBUTTON or BS_OWNERDRAW style.
- Combo Styles Value Description #include $GUI_SS_DEFAULT_COMBO see Default/forced GUICtrlCreateCombo function. Automatically scrolls the text in an edit control to the right when the user types a character at the end of the line. $CBS_AUTOHSCROLL 0x0040 If this style is not set, only text that fits within the rectangular boundary is enabled. Shows a disabled vertical scroll bar in the list box when the box does not contain enough items to scroll. $CBS_DISABLENOSCROLL 0x0800 Without this style, the scroll bar is hidden when the list box does not contain enough items. Displays only the edit control by default. The user can display the list $CBS_DROPDOWN 0x0002 box by selecting an icon next to the edit control. Displays a static text field that $CBS_DROPDOWNLIST 0x0003 displays the current selection in the list box. Converts to lowercase any uppercase $CBS_LOWERCASE 0x4000 characters that are typed into the edit control of a combo box. Specifies that the combo box will be exactly the size specified by the application when it created the combo $CBS_NOINTEGRALHEIGHT 0x0400 box. Usually, Windows CE sizes a combo box so that it does not display partial items.
- Converts text typed in the combo box edit control from the Windows CE character set to the OEM character set and then back to the Windows CE set. $CBS_OEMCONVERT 0x0080 This style is most useful for combo boxes that contain file names. It applies only to combo boxes created with the CBS_DROPDOWN style. Displays the list box at all times. The $CBS_SIMPLE 0x0001 current selection in the list box is displayed in the edit control. Sorts strings that are typed into the $CBS_SORT 0x0100 list box. Converts to uppercase any lowercase $CBS_UPPERCASE 0x2000 characters that are typed into the edit control of a combo box. List Styles Value Description #include $GUI_SS_DEFAULT_LIST see Default/forced GUICtrlCreateList function. Shows a disabled vertical scroll bar for the list box when the box does not contain enough items to scroll. $LBS_DISABLENOSCROLL 0x1000 If you do not specify this style, the scroll bar is hidden when the list box does not contain enough items. Specifies that the list box will be exactly the size specified by the $LBS_NOINTEGRALHEIGHT 0x0100 application when it created the list box. $LBS_NOSEL 0x4000 Specifies that the user can view list
- box strings but cannot select them. Notifies the parent window when $LBS_NOTIFY 0x0001 the user taps or double-taps a string in the list box. Sorts strings in the list box $LBS_SORT 0x0002 alphabetically. Sorts strings in the list box alphabetically. The parent window receives an input message when the $LBS_STANDARD 0xA00003 user taps or double-taps a string. The list box has borders on all sides. (LBS_NOTIFY | LBS_SORT | WS_VSCROLL | WS_BORDER) Enables a list box to recognize and expand tab characters when drawing its strings. The default tab positions $LBS_USETABSTOPS 0x0080 are 32 dialog box units. A dialog box unit is equal to one-fourth of the current dialog box base-width unit. Edit/Input Styles Value Description #include $GUI_SS_DEFAULT_EDIT, $GUI_SS_DEFAULT_INPUT see Default/forced GUICtrlCreateEdit or GUICtrlCreateInput function. Automatically scrolls text to the right by 10 characters when the user types a character at the $ES_AUTOHSCROLL 0x0080 end of the line. When the user presses the ENTER key, the control scrolls all text back to the zero position.
- Scrolls text up one page when the user presses $ES_AUTOVSCROLL 0x0040 the ENTER key on the last line. $ES_CENTER 0x0001 Centers text in a multiline edit control. Converts all characters to lowercase as they are $ES_LOWERCASE 0x0010 typed into the edit control. Negates the default behavior for an edit control. The default behavior hides the selection when the control loses the input focus and inverts the $ES_NOHIDESEL 0x0100 selection when the control receives the input focus. If you specify ES_NOHIDESEL, the selected text is inverted, even if the control does not have the focus. Accepts into the edit control only digits to be $ES_NUMBER 0x2000 typed. This style is most useful for edit controls that $ES_OEMCONVERT 0x0400 contain file names. Designates a multiline edit control. The default $ES_MULTILINE 0x0004 is a single-line edit control. Displays an asterisk (*) for each character that is $ES_PASSWORD 0x0020 typed into the edit control. Prevents the user from typing or editing text in $ES_READONLY 0x0800 the edit control. $ES_RIGHT 0x0002 Right-aligns text in a multiline edit control. Converts all characters to uppercase as they are $ES_UPPERCASE 0x0008 typed into the edit control. Specifies that a carriage return be inserted when the user presses the ENTER key while typing text into a multiline edit control in a dialog box. $ES_WANTRETURN 0x1000 If you do not specify this style, pressing the ENTER key has the same effect as pressing the dialog box’s default push button. This style has no effect on a single-line edit control.
CÓ THỂ BẠN MUỐN DOWNLOAD
-
Giáo Trình How To Use AutoIt A Professional Manner part 1
5 p | 275 | 90
-
Giáo Trình How To Use AutoIt A Professional Manner part 2
5 p | 190 | 62
-
Giáo Trình How To Use AutoIt A Professional Manner part 3
5 p | 151 | 52
-
Giáo Trình How To Use AutoIt A Professional Manner part 4
5 p | 148 | 41
-
Giáo Trình How To Use AutoIt A Professional Manner part 5
6 p | 118 | 34
-
Giáo Trình How To Use AutoIt A Professional Manner part 6
6 p | 143 | 31
-
Giáo Trình How To Use AutoIt A Professional Manner part 8
6 p | 127 | 31
-
Giáo Trình How To Use AutoIt A Professional Manner part 15
10 p | 110 | 29
-
Giáo Trình How To Use AutoIt A Professional Manner part 9
6 p | 124 | 29
-
Giáo Trình How To Use AutoIt A Professional Manner part 7
6 p | 107 | 29
-
Giáo Trình How To Use AutoIt A Professional Manner part 11
5 p | 120 | 28
-
Giáo Trình How To Use AutoIt A Professional Manner part 14
6 p | 104 | 27
-
Giáo Trình How To Use AutoIt A Professional Manner part 13
6 p | 118 | 27
-
Giáo Trình How To Use AutoIt A Professional Manner part 12
6 p | 117 | 27
-
Giáo Trình How To Use AutoIt A Professional Manner part 10
6 p | 114 | 27
-
Giáo Trình How To Use AutoIt A Professional Manner part 18
8 p | 90 | 19
-
Giáo Trình How To Use AutoIt A Professional Manner part 16
8 p | 99 | 17
-
Giáo Trình How To Use AutoIt A Professional Manner part 17
8 p | 102 | 17
Chịu trách nhiệm nội dung:
Nguyễn Công Hà - Giám đốc Công ty TNHH TÀI LIỆU TRỰC TUYẾN VI NA
LIÊN HỆ
Địa chỉ: P402, 54A Nơ Trang Long, Phường 14, Q.Bình Thạnh, TP.HCM
Hotline: 093 303 0098
Email: support@tailieu.vn