###User Defined Function###
_GUICtrlComboBox_SetHorizontalExtent

###Description###
Set the width, in pixels, by which a list box can be scrolled horizontally

###Syntax###
#include <GuiComboBox.au3>
_GUICtrlComboBox_SetHorizontalExtent ( $hWnd, $iWidth )


###Parameters###
@@ParamTable@@
$hWnd
	Control ID/Handle to the control
$iWidth
	Specifies the scrollable width of the list box, in pixels
@@End@@

###ReturnValue###
None.


###Remarks###
If the width of the ListBox is smaller than $iWidth, the horizontal scroll bar horizontally scrolls items in the list box.

If the width of the ListBox is equal to or greater than $iWidth, the horizontal scroll bar is hidden or, if the ComboBox has the $CBS_DISABLENOSCROLL style, disabled.


###Related###
_GUICtrlComboBox_GetHorizontalExtent


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