Function Reference


_GUICtrlStatusBar_GetParts

Retrieves the number of parts and the part edges

#include <GuiStatusBar.au3>
_GUICtrlStatusBar_GetParts ( $hWnd )

Parameters

$hWnd Handle to the control

Return Value

Returns an array with the following format:
    $aParts[0] - Number of parts
    $aParts[1] - Right edge of part #1
    $aParts[2] - Right edge of part #2
    $aParts[n] - Right edge of part n

Related

_GUICtrlStatusBar_SetParts

Example

#include <GUIConstantsEx.au3>
#include <GuiStatusBar.au3>
#include <WindowsConstants.au3>

Global $g_idMemo

Example()

Func Example()
        ; Create GUI
        Local $hGUI = GUICreate("StatusBar Get/Set Parts (v" & @AutoItVersion & ")", 400, 300)
        Local $hStatus = _GUICtrlStatusBar_Create($hGUI)

        ; Create memo control
        $g_idMemo = GUICtrlCreateEdit("", 2, 2, 396, 274, $WS_VSCROLL)
        GUICtrlSetFont($g_idMemo, 9, 400, 0, "Courier New")
        GUISetState(@SW_SHOW)

        ; Set/Get parts
        Local $aParts[3] = [75, 150, -1]
        _GUICtrlStatusBar_SetParts($hStatus, $aParts)

        ;Set Text/ Get Width
        Local $iParts = _GUICtrlStatusBar_GetCount($hStatus)
        For $iI = 0 To $iParts - 1
                _GUICtrlStatusBar_SetText($hStatus, "Text " & $iI, $iI)
                MemoWrite("Part " & $iI & " width .: " & _GUICtrlStatusBar_GetWidth($hStatus, $iI))
        Next

        ; Loop until the user exits.
        Do
        Until GUIGetMsg() = $GUI_EVENT_CLOSE
        GUIDelete()
EndFunc   ;==>Example

; Write message to memo
Func MemoWrite($sMessage = "")
        GUICtrlSetData($g_idMemo, $sMessage & @CRLF, 1)
EndFunc   ;==>MemoWrite