Function Reference

_GUICtrlButton_Destroy

ボタンコントロールを削除します。

#Include <GuiButton.au3>
_GUICtrlButton_Destroy(ByRef $hWnd)

 

パラメータ

$hWnd コントロールのハンドル

 

返し値

成功: True、ハンドルは0に設定されます。
失敗: False

 

注意

_GUICtrlButton_Createによって作成されたボタンにのみ使用できます。

 

関連

_GUICtrlButton_Create

 


#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>

Opt("MustDeclareVars", 1)

Global $iMemo

_Main()

Func _Main()
    Local $hGUI, $btn, $rdo, $chk

    $hGUI = GUICreate("Buttons", 400, 400)
    $iMemo = GUICtrlCreateEdit("", 119, 10, 276, 374, $WS_VSCROLL)
    GUICtrlSetFont($iMemo, 9, 400, 0, "Courier New")

    $btn = _GUICtrlButton_Create($hGUI, "Button1", 10, 10, 90, 50)

    $rdo = _GUICtrlButton_Create($hGUI, "Radio1", 10, 60, 90, 50, BitOR($BS_AUTORADIOBUTTON, $BS_NOTIFY))

    $chk = _GUICtrlButton_Create($hGUI, "Check1", 10, 120, 90, 50, BitOR($BS_AUTO3STATE, $BS_NOTIFY))

    GUISetState()
   
    MemoWrite("$btn handle: " & $btn)
    MemoWrite("$rdo handle: " & $rdo)
    MemoWrite("$chk handle: " & $chk & @CRLF)
   
    MsgBox(4096, "Information", "About to Destroy Buttons")
   
    Send("^{END}")
   
    MemoWrite("Destroyed $btn: " & _GUICtrlButton_Destroy($btn))
    MemoWrite("Destroyed $rdo: " & _GUICtrlButton_Destroy($rdo))
    MemoWrite("Destroyed $chk: " & _GUICtrlButton_Destroy($chk) & @CRLF)

    MemoWrite("$btn handle: " & $btn)
    MemoWrite("$rdo handle: " & $rdo)
    MemoWrite("$chk handle: " & $chk & @CRLF)

    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