_GUICtrlButton_GetNote
Gets the text of the note associated with the Command Link button
#include <GuiButton.au3>
_GUICtrlButton_GetNote($hWnd)
Параметры
$hWnd | Дескриптор или идентификатор элемента |
Возвращаемое значение
Успех: | Text associated with the Command Link Button |
Ошибка: | "" |
Примечания
This function works only with the $BS_COMMANDLINK and $BS_DEFCOMMANDLINK button stylesСм. также
_GUICtrlButton_SetNote, _GUICtrlButton_GetNoteLengthСм. также
Искать BCM_GETNOTE в библиотеке MSDNПример
If @osversion = "WIN_XP" And MsgBox(4160 + 4 + 256, "Информация", "Эта функция не работает в WinXP" & @lf & "продолжить?") = 7 Then Exit
#include <GUIConstantsEx.au3>
#include <GuiButton.au3>
#include <WindowsConstants.au3>
#include <GuiMenu.au3>
Global $iMemo
; Примечание: возвращаемый дескриптор этой кнопки не может быть прочитан с помощью функции GuiCtrlRead
_Main()
Func _Main()
Local $hButton, $hGUI
$hGUI = GUICreate("Buttons", 400, 400)
$iMemo = GUICtrlCreateEdit("", 10, 75, 390, 315, $WS_VSCROLL)
GUICtrlSetFont($iMemo, 9, 400, 0, "Courier New")
$hButton = _GUICtrlButton_Create($hGUI, "Кнопка1", 10, 10, 160, 40, BitOR($BS_COMMANDLINK, $BS_DEFPUSHBUTTON, $BS_PUSHLIKE))
_GUICtrlButton_SetNote($hButton, "Этот тест для Vista")
GUISetState()
MemoWrite("Note: " & _GUICtrlButton_GetNote($hButton))
MemoWrite("Note Length: " & _GUICtrlButton_GetNoteLength($hButton))
MemoWrite("Текст кнопки: " & _GUICtrlButton_GetText($hButton))
While 1
Switch GUIGetMsg()
Case $GUI_EVENT_CLOSE
ExitLoop
EndSwitch
WEnd
Exit
EndFunc ;==>_Main
; Записывает строку в элемент для заметок
Func MemoWrite($sMessage)
GUICtrlSetData($iMemo, $sMessage & @CRLF, 1)
EndFunc ;==>MemoWrite