###User Defined Function###
_GUICtrlListView_SetColumnWidth

###Description###
Changes the width of a column

###Syntax###
#include <GuiListView.au3>
_GUICtrlListView_SetColumnWidth ( $hWnd, $iCol, $iWidth )


###Parameters###
@@ParamTable@@
$hWnd
	Control ID/Handle to the control
$iCol
	0-based index of a valid column. For list-view mode, this parameter must be set to zero
$iWidth
	New width of the column, in pixels.
	For report-view mode, the following special values are supported:
		$LVSCW_AUTOSIZE - Automatically sizes the column.
		$LVSCW_AUTOSIZE_USEHEADER - Automatically sizes the column to fit the header text.
	If you use this value with the last column, its width is set to fill the remaining width of the list-view control.
@@End@@

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


###Remarks###
None.


###Related###
_GUICtrlListView_GetColumnWidth, _GUICtrlListView_HideColumn


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