Funktionreferenz


_GUICtrlListBox_SetCaretIndex

Beschreibung anzeigen in

Setzt das Fokus-Rechteck zum Item an dem festgelegten Index in einer Mehrfachauswahl-Listbox

#include <GuiListBox.au3>
_GUICtrlListBox_SetCaretIndex ( $hWnd, $iIndex [, $bPartial = False] )

Parameter

$hWnd Control-ID / Handle des Controls
$iIndex legt den 0-basierenden Index des Items fest
$bPartial [optional] Wenn False, wird das Item so lange gescrollt, bis es komplett sichtbar ist.
Wenn es True ist, bis es zumindest teilweise sichtbar ist

Rückgabewert

Erfolg: True
Fehler: False

Bemerkungen

- - - - - - - - Erklärung der Controls - - - - - - - -

Verwandte Funktionen

_GUICtrlListBox_GetCaretIndex

Beispiel

#include <GUIConstantsEx.au3>
#include <GuiListBox.au3>

Example()

Func Example()
    ; Erstellt eine GUI
    GUICreate("ListBox: Setzt und ermittelt den Cursor-Index (v" & @AutoItVersion & ")", 500, 296)
    Local $idListBox = GUICtrlCreateList("", 2, 2, 396, 296)

    GUISetState(@SW_SHOW)

    ; Fügt Strings hinzu
    _GUICtrlListBox_BeginUpdate($idListBox)
    For $iI = 0 To 9
        _GUICtrlListBox_AddString($idListBox, StringFormat("%03d : String", $iI))
    Next
    _GUICtrlListBox_EndUpdate($idListBox)

    ; Setzt den Cursor-Index
    _GUICtrlListBox_SetCaretIndex($idListBox, 2)

    ; Liest den Cursor-Index
    Local $iIndex = _GUICtrlListBox_GetCaretIndex($idListBox)
    _GUICtrlListBox_SetCurSel($idListBox, $iIndex)

    ; Die Schleife wiederholt sich, bis der Benutzer die Beenden-Aktion der GUI auslöst.
    Do
    Until GUIGetMsg() = $GUI_EVENT_CLOSE
    GUIDelete()
EndFunc   ;==>Example