Function Reference


_GUICtrlTab_GetImageList

Retrieves the tab control image list

#include <GuiTab.au3>
_GUICtrlTab_GetImageList ( $hWnd )

Parameters

$hWnd Control ID/Handle to the control

Return Value

Success: the handle to the image list.
Failure: 0.

Related

_GUICtrlTab_SetImageList

Example

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

Example()

Func Example()
        ; Create GUI
        Local $hGUI = GUICreate("Tab Get/Set Image List (v" & @AutoItVersion & ")", 400, 300)
        Local $hTab = _GUICtrlTab_Create($hGUI, 2, 2, 396, 296)
        GUISetState(@SW_SHOW)

        ; Create images
        Local $hImage = _GUIImageList_Create()
        _GUIImageList_Add($hImage, _WinAPI_CreateSolidBitmap($hGUI, 0xFF0000, 16, 16))
        _GUIImageList_Add($hImage, _WinAPI_CreateSolidBitmap($hGUI, 0x00FF00, 16, 16))
        _GUIImageList_Add($hImage, _WinAPI_CreateSolidBitmap($hGUI, 0x0000FF, 16, 16))
        $hImage = _GUICtrlTab_SetImageList($hTab, $hImage)

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

        ; Show image list handle
        MsgBox($MB_SYSTEMMODAL, "Information", "Previous Image list handle: 0x" & Hex($hImage) & @CRLF & _
                        "IsPtr = " & IsPtr($hImage) & " IsHWnd = " & IsHWnd($hImage))

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