Function Reference


_GUICtrlTab_InsertItem

Inserts a new tab

#include <GuiTab.au3>
_GUICtrlTab_InsertItem ( $hWnd, $iIndex, $sText [, $iImage = -1 [, $iParam = 0]] )

Parameters

$hWnd Control ID/Handle to the control
$iIndex Index of the new tab
$sText Tab text
$iImage [optional] 0-based tab image index
$iParam [optional] Application defined data

Return Value

Success: the 0-based index of the new tab.
Failure: -1.

Example

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

Example()

Func Example()
        ; Create GUI
        GUICreate("Tab Control Insert Item (v" & @AutoItVersion & ")", 400, 300)
        Local $idTab = GUICtrlCreateTab(2, 2, 396, 296)
        GUISetState(@SW_SHOW)

        ; Add tabs
        _GUICtrlTab_InsertItem($idTab, 0, "Tab 1")
        _GUICtrlTab_InsertItem($idTab, 1, "Tab 2")
        _GUICtrlTab_InsertItem($idTab, 2, "Tab 3")

        ; Loop until the user exits.
        Do
        Until GUIGetMsg() = $GUI_EVENT_CLOSE
        GUIDelete()
EndFunc   ;==>Example