Setzt die Breite und Höhe eines Tabs (mit fester Breite oder selbst gezeichnet)
#include <GuiTab.au3>
_GUICtrlTab_SetItemSize ( $hWnd, $iWidth, $iHeight )
| $hWnd | Control-ID / Handle des Controls |
| $iWidth | Neue Breite in Pixel |
| $iHeight | Neue Höhe in Pixel |
- - - - - - - - Erklärung der Controls - - - - - - - -
#include "Extras\HelpFileInternals.au3"
#include <GUIConstantsEx.au3>
#include <GuiTab.au3>
Example()
Func Example()
; Erstellt eine GUI
Local $hGUI = GUICreate("Tab-Control: Setzt die Itemgröße", 450, 300, 100, 100)
Local $idTab = GUICtrlCreateTab(2, 2, 446, 266, BitOR($TCS_BUTTONS, $TCS_FIXEDWIDTH))
_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")
_MemoMsgBox($MB_SYSTEMMODAL, "Information", "Setzt die Itemgröße")
_GUICtrlTab_SetItemSize($idTab, 70, 40)
_MemoMsgBoxStatus("", -1, $hGUI) ; Keine weiteren Aktionen, es wird gewartet bis die GUI geschlossen wird.
EndFunc ;==>Example