Löscht einen Tab
#include <GuiTab.au3>
_GUICtrlTab_DeleteItem ( $hWnd, $iIndex )
| $hWnd | Control-ID / Handle des Controls |
| $iIndex | 0-basierender Index des Items |
| Erfolg: | True |
| Fehler: | False |
Dies löscht nicht die Controls auf dem Tabitem
- - - - - - - - Erklärung der Controls - - - - - - - -
#include "Extras\HelpFileInternals.au3"
#include <GUIConstantsEx.au3>
#include <GuiTab.au3>
#include <MsgBoxConstants.au3>
Example()
Func Example()
; Erstellt eine GUI
Local $hGUI = GUICreate("Tab-Control: Item löschen - v(" & @AutoItVersion & ")", 450, 300, 100, 100)
Local $idTab = GUICtrlCreateTab(2, 2, 446, 266)
_MemoMsgBoxStatus() ; Statuserstellung
GUISetState(@SW_SHOW)
; Fügt Tabs hinzu
_GUICtrlTab_InsertItem($idTab, 0, "Tab 0")
_GUICtrlTab_InsertItem($idTab, 1, "Tab 1")
_GUICtrlTab_InsertItem($idTab, 2, "Tab 2")
; Löscht den letzten Tab
_Memo_MemoMsgBox($MB_SYSTEMMODAL, "Information", "Lösche den letzten Tab")
_GUICtrlTab_DeleteItem($idTab, 2)
_MemoMsgBoxStatus("", -1, $hGUI) ; Keine weiteren Aktionen, es wird gewartet bis die GUI geschlossen wird.
EndFunc ;==>Example