_GUICtrlTreeView_GetItemParam
Возвращает ассоциативное значение связанное с пунктом
#include <GuiTreeView.au3>
_GUICtrlTreeView_GetItemParam($hWnd [, $hItem = 0])
Параметры
$hWnd | Дескриптор или идентификатор элемента |
$hItem |
[необязательный] Идентификатор (ID) пункта |
Возвращаемое значение
Успех: | Возвращает ассоциативное значение пункта |
Ошибка: | Возвращает 0 |
См. также
_GUICtrlTreeView_SetItemParamПример
#include <GUIConstantsEx.au3>
#include <GuiTreeView.au3>
#include <WindowsConstants.au3>
$Debug_TV = False ; Проверяет ClassName передаваемый в функции. Установите True и используйте дескриптор от другого элемента, чтобы увидеть как это работает
; Предупреждение: не используйте SetItemParam для пунктов созданных функцией GUICtrlCreateTreeViewItem, так как в них значение Param содержит идентификатор пункта (ControlID).
Example_Internal()
Example_External()
Func Example_Internal()
Local $hItem[10], $hItemChild[30], $iYIndex = 0, $iRand, $hTreeView
Local $iStyle = BitOR($TVS_EDITLABELS, $TVS_HASBUTTONS, $TVS_HASLINES, $TVS_LINESATROOT, $TVS_DISABLEDRAGDROP, $TVS_SHOWSELALWAYS, $TVS_CHECKBOXES)
GUICreate("Получить параметр пункта (Нативный)", 400, 300)
$hTreeView = GUICtrlCreateTreeView(2, 2, 396, 268, $iStyle, $WS_EX_CLIENTEDGE)
GUISetState()
_GUICtrlTreeView_BeginUpdate($hTreeView)
For $x = 0 To 9
$hItem[$x] = GUICtrlCreateTreeViewItem(StringFormat("[%02d] Пункт", $x), $hTreeView)
For $y = $iYIndex To $iYIndex + 2
$hItemChild[$y] = GUICtrlCreateTreeViewItem(StringFormat("[%02d] Дочерний", $y), $hItem[$x])
Next
$iYIndex += 3
Next
_GUICtrlTreeView_EndUpdate($hTreeView)
$iRand = Random(0, 9, 1)
MsgBox(4160, "Информация", StringFormat("Параметр (являющийся идентификатором) пункта для индекса %d: %s", $iRand, _GUICtrlTreeView_GetItemParam($hTreeView, $hItem[$iRand])))
$iRand = Random(0, 29, 1)
MsgBox(4160, "Информация", StringFormat("Параметр (являющийся идентификатором) дочернего пункта для индекса %d: %s", $iRand, _GUICtrlTreeView_GetItemParam($hTreeView, $hItemChild[$iRand])))
; Цикл выполняется, пока окно не будет закрыто
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
GUIDelete()
EndFunc ;==>Example_Internal
Func Example_External()
Local $GUI, $hItem[10], $hItemChild[30], $iYIndex = 0, $iRand, $iParam = 1, $hTreeView
Local $iStyle = BitOR($TVS_EDITLABELS, $TVS_HASBUTTONS, $TVS_HASLINES, $TVS_LINESATROOT, $TVS_DISABLEDRAGDROP, $TVS_SHOWSELALWAYS, $TVS_CHECKBOXES)
$GUI = GUICreate("Получить параметр пункта (UDF)", 400, 300)
$hTreeView = _GUICtrlTreeView_Create($GUI, 2, 2, 396, 268, $iStyle, $WS_EX_CLIENTEDGE)
GUISetState()
_GUICtrlTreeView_BeginUpdate($hTreeView)
For $x = 0 To 9
$hItem[$x] = _GUICtrlTreeView_Add($hTreeView, 0, StringFormat("[%02d] Пункт", $x))
_GUICtrlTreeView_SetItemParam($hTreeView, $hItem[$x], $iParam)
$iParam += 1
For $y = $iYIndex To $iYIndex + 2
$hItemChild[$y] = _GUICtrlTreeView_AddChild($hTreeView, $hItem[$x], StringFormat("[%02d] Пункт", $y))
_GUICtrlTreeView_SetItemParam($hTreeView, $hItemChild[$y], $iParam)
$iParam += 1
Next
$iYIndex += 3
Next
_GUICtrlTreeView_EndUpdate($hTreeView)
$iRand = Random(0, 9, 1)
MsgBox(4160, "Информация", StringFormat("Параметр пункта для индекса %d: %s", $iRand, _GUICtrlTreeView_GetItemParam($hTreeView, $hItem[$iRand])))
$iRand = Random(0, 29, 1)
MsgBox(4160, "Информация", StringFormat("Параметр дочернего пункта для индекса %d: %s", $iRand, _GUICtrlTreeView_GetItemParam($hTreeView, $hItemChild[$iRand])))
; Цикл выполняется, пока окно не будет закрыто
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
GUIDelete()
EndFunc ;==>Example_External