Function Reference

_GUICtrlIpAddress_Destroy

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

#Include <GuiIPAddress.au3>
_GUICtrlIpAddress_Destroy(ByRef $hWnd)

 

パラメータ

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

 

返し値

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

 

注意

_GUICtrlIpAddress_Createで作成されたIPアドレスコントロールにのみ使用できます。

 

関連

_GUICtrlIpAddress_Create

 


#include <GuiConstantsEx.au3>
#include <GuiIPAddress.au3>
#include <WindowsConstants.au3>

Opt("MustDeclareVars", 1)

$Debug_IP = False ; IPAddress関数に渡されるClassNameを調べる。Trueを設定すると動作確認のために他のコントロールのハンドルを使用

_Main()

Func _Main()
    Local $hgui, $hIPAddress
   
    $hgui = GUICreate("IP Address Destroy Control Example", 400, 300)
    $hIPAddress = _GUICtrlIpAddress_Create ($hgui, 10, 10, 125, 30, $WS_THICKFRAME)
    GUISetState(@SW_SHOW)

    ; IPアドレスを消去
    MsgBox (4160, "Information", "Destroy IP address control")
    _GUICtrlIpAddress_Destroy ($hIPAddress)

    ; ユーザーがGUIを閉じるまで待機
    Do
    Until GUIGetMsg() = $GUI_EVENT_CLOSE
EndFunc   ;==>_Main