コマンドリンクボタンに関連付けられたノートのテキストを取得します。
#Include <GuiButton.au3>
_GUICtrlButton_GetNote($hWnd)
パラメータ
$hWnd | コントロールのハンドル |
返し値
成功: | コマンドリンクボタンに関連付けられたテキスト |
失敗: | "" |
注意
この関数は$BS_COMMANDLINK、$BS_DEFCOMMANDLINKスタイルのボタンにのみ動作します。
関連
_GUICtrlButton_SetNote, _GUICtrlButton_GetNoteLength
こちらも参照
MSDNライブラリでBCM_GETNOTEを検索して下さい。
例
#AutoIt3Wrapper_Au3Check_Parameters=-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6
#include <GUIConstantsEx.au3>
#include <GuiButton.au3>
#include <WindowsConstants.au3>
#include <GuiMenu.au3>
Opt("MustDeclareVars", 1)
Global $btn, $iMemo
; これらボタンのコントロールIDはGuiCtrlReadでは読み取れないことに注意
_Main()
Func _Main()
Local $hGUI
$hGUI = GUICreate("Buttons", 400, 400)
$iMemo = GUICtrlCreateEdit("", 10, 65, 390, 325, $WS_VSCROLL)
GUICtrlSetFont($iMemo, 9, 400, 0, "Courier New")
$btn = _GUICtrlButton_Create($hGUI, "Button1", 10, 10, 160, 40, BitOR($BS_COMMANDLINK, $BS_DEFPUSHBUTTON, $BS_PUSHLIKE))
_GUICtrlButton_SetNote($btn, "This is a test of Vista")
GUISetState()
MemoWrite("Note: " & _GUICtrlButton_GetNote($btn))
MemoWrite("Note Length: " & _GUICtrlButton_GetNoteLength($btn))
MemoWrite("Button Text: " & _GUICtrlButton_GetText($btn))
While 1
Switch GUIGetMsg()
Case $GUI_EVENT_CLOSE
ExitLoop
EndSwitch
WEnd
Exit
EndFunc ;==>_Main
; メモコントロールに1行書き込み
Func MemoWrite($sMessage)
GUICtrlSetData($iMemo, $sMessage & @CRLF, 1)
EndFunc ;==>MemoWrite