###User Defined Function###
_GUICtrlListView_SetItemPosition32

###Description###
Moves an item to a specified position in the control

###Syntax###
#include <GuiListView.au3>
_GUICtrlListView_SetItemPosition32 ( $hWnd, $iIndex, $iCX, $iCY )


###Parameters###
@@ParamTable@@
$hWnd
	Control ID/Handle to the control
$iIndex
	0-based index of the item
$iCX
	New x-position of the item's upper-left corner, in view coordinates
$iCY
	New y-position of the item's upper-left corner, in view coordinates
@@End@@

###ReturnValue###
@@ReturnTable@@
Success:	True.
Failure:	False.
@@End@@


###Remarks###
If the control has the $LVS_AUTOARRANGE style, the items in the control are arranged after the position of the item is set.
The control must be in icon or small icon view mode.

This message differs from the <a href="_GUICtrlListView_SetItemPosition.htm">_GUICtrlListView_SetItemPosition()</a> function in that it uses 32-bit coordinates.


###Related###
_GUICtrlListView_SetItemPosition


###Example###
@@IncludeExample@@
