Function Reference


_GUICtrlListView_SetItemChecked

Sets the checked state

#include <GuiListView.au3>
_GUICtrlListView_SetItemChecked ( $hWnd, $iIndex [, $bCheck = True] )

Parameters

$hWnd Control ID/Handle to the control
$iIndex 0-based index of the item, -1 sets all items
$bCheck [optional] Value to set checked state to:
    True - Checked
    False - Not checked

Return Value

Success: True.
Failure: False.

Remarks

Use only on controls that have the $LVS_EX_CHECKBOXES extended style.

Related

_GUICtrlListView_GetItemChecked

Example

#include <GUIConstantsEx.au3>
#include <GuiListView.au3>
#include <MsgBoxConstants.au3>

Example()

Func Example()
    GUICreate("ListView Get/Set Item Checked State (v" & @AutoItVersion & ")", 400, 300)
    Local $idListview = GUICtrlCreateListView("", 2, 2, 394, 268)
    _GUICtrlListView_SetExtendedListViewStyle($idListview, BitOR($LVS_EX_FULLROWSELECT, $LVS_EX_CHECKBOXES))
    GUISetState(@SW_SHOW)

    ; Set ANSI format
;~     _GUICtrlListView_SetUnicodeFormat($idListview, False)

    ; Add columns
    _GUICtrlListView_AddColumn($idListview, "Column 0", 100)
    _GUICtrlListView_AddColumn($idListview, "Column 1", 100)
    _GUICtrlListView_AddColumn($idListview, "Column 2", 100)

    ; Add items
    _GUICtrlListView_AddItem($idListview, "Row 0: Col 0", 0)
    _GUICtrlListView_AddSubItem($idListview, 0, "Row 0: Col 1", 1)
    _GUICtrlListView_AddSubItem($idListview, 0, "Row 0: Col 2", 2)
    _GUICtrlListView_AddItem($idListview, "Row 1: Col 0", 1)
    _GUICtrlListView_AddSubItem($idListview, 1, "Row 1: Col 1", 1)
    _GUICtrlListView_AddItem($idListview, "Row 2: Col 0", 2)

    ; Check item 1
    _GUICtrlListView_SetItemChecked($idListview, 1)
    MsgBox($MB_SYSTEMMODAL, "Information", "Item 1 Checked: " & _GUICtrlListView_GetItemChecked($idListview, 1))

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