Delete the IP Address control
#include <GuiIPAddress.au3>
_GUICtrlIpAddress_Destroy ( ByRef $hWnd )
| $hWnd | Handle to the control | 
| Success: | True, $hWnd is set to 0. | 
| Failure: | False. | 
Restricted to only be used on IP Address controls created with _GUICtrlIpAddress_Create().
#include <GUIConstantsEx.au3>
#include <GuiIPAddress.au3>
#include <MsgBoxConstants.au3>
#include <WindowsStylesConstants.au3>
Example()
Func Example()
    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)
    ; Clear the IP Address
    MsgBox($MB_SYSTEMMODAL, "Information", "Destroy IP Address Control")
    _GUICtrlIpAddress_Destroy($hIPAddress)
    ; Wait for user to close GUI
    Do
    Until GUIGetMsg() = $GUI_EVENT_CLOSE
EndFunc   ;==>Example