Retrieves the bounding rectangle for a tab
#include <GuiTab.au3>
_GUICtrlTab_GetItemRect ( $hWnd, $iIndex )
$hWnd | Control ID/Handle to the control |
$iIndex | 0-based item index |
#include <GUIConstantsEx.au3>
#include <GuiTab.au3>
#include <MsgBoxConstants.au3>
Example()
Func Example()
Local $aRect, $sRect, $idTab
; Create GUI
GUICreate("Tab Control Get Item Rect", 400, 300)
$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")
; Get tab 0 rectangle
$aRect = _GUICtrlTab_GetItemRect($idTab, 0)
$sRect = StringFormat("[%d, %d, %d, %d]", $aRect[0], $aRect[1], $aRect[2], $aRect[3])
MsgBox($MB_SYSTEMMODAL, "Information", "Tab 0 rectangle: " & $sRect)
; Loop until the user exits.
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
GUIDelete()
EndFunc ;==>Example