###User Defined Function###
_GUICtrlListView_SetIconSpacing

###Description###
Sets the spacing between icons where the style is large icon

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


###Parameters###
@@ParamTable@@
$hWnd
	Control ID/Handle to the control
$iCX
	Distance, in pixels, to set between icons on the x-axis
$iCY
	Distance, in pixels, to set between icons on the y-axis
@@End@@

###ReturnValue###
Returns an array with the following format:
	[0] - Previous CX value
	[1] - Previous CY value


###Remarks###
Values for $iCX and $iCY are relative to the upper-left corner of an icon bitmap. To set spacing between icons that do not overlap, the $iCX or $iCY values must include the size of the icon, plus the amount of empty space desired between icons.
Values that do not include the width of the icon will result in overlaps.


###Related###


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