Function Reference

GUICtrlDelete

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

GUICtrlDelete ( controlID )

 

パラメータ

controlID GUICtrlCreate...関数によって返されるコントロール識別子(コントロールID)。

 

返し値

成功 1を返します。
失敗 0を返します。

 

注意

コンテキストメニューコントロールに使用する場合はGUICtrlCreateContextMenuの"注意"を参照してください。

 

関連

GUICreate, GUICtrlCreate..., GUICtrlCreateContextMenu

 


#include <GUIConstantsEx.au3>

Opt('MustDeclareVars', 1)

Example()

Func Example()
    Local $date, $del, $msg
   
    GUICreate("My GUI delete control", 200, 200, 800, 200)
    $date = GUICtrlCreateDate("1953/04/25", 10, 10, 185, 20)
    $del = GUICtrlCreateButton("Delete control", 50, 50, 70, 20)
    GUISetState()

    ; ダイアログが閉じられるまでGUIを実行
    Do
        $msg = GUIGetMsg()
        If $msg = $del Then
            GUICtrlDelete($date)
            GUICtrlDelete($del)
        EndIf
    Until $msg = $GUI_EVENT_CLOSE
EndFunc   ;==>Example