Function Reference


_GUICtrlListView_GetItemSpacing

Determines the spacing between items in the control

#include <GuiListView.au3>
_GUICtrlListView_GetItemSpacing ( $hWnd [, $bSmall = False] )

Parameters

$hWnd Control ID/Handle to the control
$bSmall [optional] View for which to retrieve the item spacing:
    True - Small icon view
    False - Icon view

Return Value


Returns an array with the following format:
    [0] - Horizontal spacing
    [1] - Vertical spacing

Related

_GUICtrlListView_GetItemSpacingX, _GUICtrlListView_GetItemSpacingY

Example

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

Example()

Func Example()
        Local $aSpace, $idListview

        GUICreate("ListView Get Item Spacing", 400, 300)
        $idListview = GUICtrlCreateListView("", 2, 2, 394, 268)
        GUISetState(@SW_SHOW)

        ; Add columns
        _GUICtrlListView_AddColumn($idListview, "Items", 100)

        ; Add items
        _GUICtrlListView_AddItem($idListview, "Item 1")
        _GUICtrlListView_AddItem($idListview, "Item 2")
        _GUICtrlListView_AddItem($idListview, "Item 3")

        ; Show item spacing
        $aSpace = _GUICtrlListView_GetItemSpacing($idListview)
        MsgBox($MB_SYSTEMMODAL, "Information", StringFormat("Item Spacing: X=%d, Y=%d", $aSpace[0], $aSpace[1]))

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