Retrieves a count of the items
#include <GuiHeader.au3>
_GUICtrlHeader_GetItemCount ( $hWnd )
$hWnd | Handle to the control |
Success: | the number of items. |
Failure: | -1. |
#include "Extras\HelpFileInternals.au3"
#include <GUIConstantsEx.au3>
#include <GuiHeader.au3>
Example()
Func Example()
; Create GUI
Local $hGUI = GUICreate("Header Get ItemCount (v" & @AutoItVersion & ")", 450, 300, 100, 100)
Local $hHeader = _GUICtrlHeader_Create($hGUI)
_MemoCreate(2, 52, 444, 220)
;~ _GUICtrlHeader_SetUnicodeFormat($hHeader, True)
GUISetState(@SW_SHOW)
; Add columns
_GUICtrlHeader_AddItem($hHeader, "Column 0", 100)
_GUICtrlHeader_AddItem($hHeader, "Column 1", 100)
_GUICtrlHeader_AddItem($hHeader, "Column 2", 100)
_GUICtrlHeader_AddItem($hHeader, "Column 3", 100)
; Show column count
_MemoWrite("Column count: " & _GUICtrlHeader_GetItemCount($hHeader))
_MemoMsgBoxStatus("", -1, $hGUI) ; no more action, wait GUI for closing
EndFunc ;==>Example