Ermittelt das begrenzende Rechteck für einen Tab
#include <GuiTab.au3>
_GUICtrlTab_GetItemRect ( $hWnd, $iIndex )
| $hWnd | Control-ID / Handle des Controls |
| $iIndex | 0-basierender Itemindex |
- - - - - - - - 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: Ermittelt das Item umgebende Rechteck", 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")
; Ermittelt das Item 0 umgebende Rechteck
Local $aRect = _GUICtrlTab_GetItemRect($idTab, 0)
Local $sRect = StringFormat("[%d, %d, %d, %d]", $aRect[0], $aRect[1], $aRect[2], $aRect[3])
_MemoMsgBox($MB_SYSTEMMODAL, "Information", "Tab 0 Rechteck: " & $sRect)
_MemoMsgBoxStatus("", -1, $hGUI) ; Keine weiteren Aktionen, es wird gewartet bis die GUI geschlossen wird.
EndFunc ;==>Example