Gets width of the borders.
#Include <GuiStatusBar.au3>
_GUICtrlStatusBarGetBorders($h_StatusBar)
Parameters
$h_StatusBar | Handle to statusbar |
Return Value
Returns zero based array
Remarks
None.
Related
None.
Example
opt("MustDeclareVars", 1)
#include <GUIConstants.au3>
#Include <GuiStatusBar.au3>
Local $gui, $StatusBar1, $msg
Local $a_PartsRightEdge[3] = [150, 300, -1]
Local $a_PartsText[3] = ["New Text", "More Text", "Even More Text"]
$gui = GUICreate("Status Bar Get Border Widths", 500, -1, -1, -1, $WS_SIZEBOX)
$StatusBar1 = _GUICtrlStatusBarCreate ($gui, $a_PartsRightEdge, $a_PartsText)
Local $a_borders = _GUICtrlStatusBarGetBorders($StatusBar1)
If IsArray($a_borders) Then
_GUICtrlStatusBarSetText($StatusBar1, "horizontal border: " & $a_borders[0], 0)
_GUICtrlStatusBarSetText($StatusBar1, "vertical border: " & $a_borders[1], 1)
_GUICtrlStatusBarSetText($StatusBar1, "between rectangles: " & $a_borders[2], 2)
EndIf
GUISetState(@SW_SHOW)
While 1
$msg = GUIGetMsg()
Select
Case $msg = $GUI_EVENT_RESIZED
_GUICtrlStatusBarResize ($StatusBar1)
Case $msg = $GUI_EVENT_CLOSE
ExitLoop
Case Else
;;;;;
EndSelect
WEnd