Funktionreferenz


_GUICtrlTab_Destroy

Beschreibung anzeigen in

Löscht das Control

#include <GuiTab.au3>
_GUICtrlTab_Destroy ( ByRef $hWnd )

Parameter

$hWnd Control-ID / Handle des Controls

Rückgabewert

Erfolg: True, $hWnd wird auf 0 gesetzt
Fehler: False

Bemerkungen

Funktioniert nur, falls das Tab-Control mit _GUICtrlTab_Create() erstellt wurde.

- - - - - - - - Erklärung der Controls - - - - - - - -

Verwandte Funktionen

_GUICtrlTab_Create

Beispiel

#include <GUIConstantsEx.au3>
#include <GuiTab.au3>
#include <MsgBoxConstants.au3>

Example()

Func Example()
    Local $hGui, $idTab

    ; Erstellt eine GUI
    $hGui = GUICreate("Tab-Control: Zerstören (UDF)", 400, 300)
    $idTab = _GUICtrlTab_Create($hGui, 2, 2, 396, 296)
    GUISetState(@SW_SHOW)

    ; Fügt Tabs hinzu
    _GUICtrlTab_InsertItem($idTab, 0, "Tab 1")
    _GUICtrlTab_InsertItem($idTab, 1, "Tab 2")
    _GUICtrlTab_InsertItem($idTab, 2, "Tab 3")

    MsgBox($MB_SYSTEMMODAL, "Information", "Tab-Control zerstören")
    _GUICtrlTab_Destroy($idTab)

    ; Die Schleife wiederholt sich, bis der Benutzer die Beenden-Aktion der GUI auslöst.
    Do
    Until GUIGetMsg() = $GUI_EVENT_CLOSE
    GUIDelete()
EndFunc   ;==>Example