Sets the highlight state of a tab item
#include <GuiTab.au3>
_GUICtrlTab_HighlightItem ( $hWnd, $iIndex [, $bHighlight = True] )
$hWnd | Control ID/Handle to the control |
$iIndex | 0-based item index |
$bHighlight | [optional] If True, the tab is highlighted, otherwise the tab is reset |
Success: | True. |
Failure: | False. |
#include <GUIConstantsEx.au3>
#include <GuiTab.au3>
Example()
Func Example()
Local $idTab
; Create GUI
GUICreate("Tab Control Get Highlight Item", 400, 300)
$idTab = GUICtrlCreateTab(2, 2, 396, 296, $TCS_BUTTONS)
GUISetState(@SW_SHOW)
; Add tabs
_GUICtrlTab_InsertItem($idTab, 0, "Tab 1")
_GUICtrlTab_InsertItem($idTab, 1, "Tab 2")
_GUICtrlTab_InsertItem($idTab, 2, "Tab 3")
; Highlight tab 2
_GUICtrlTab_HighlightItem($idTab, 1)
; Loop until the user exits.
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
GUIDelete()
EndFunc ;==>Example