###User Defined Function###
_GUICtrlComboBoxEx_LimitText

###Description###
Limits the length of the text the user may type into the edit control of a ComboBox

###Syntax###
#include <GuiComboBoxEx.au3>
_GUICtrlComboBoxEx_LimitText ( $hWnd [, $iLimit = 0] )


###Parameters###
@@ParamTable@@
$hWnd
	Handle to the control
$iLimit
	[optional] Limit length of the text
@@End@@

###ReturnValue###
None.


###Remarks###
If the $iLimit parameter is zero, the text length is limited to 0x7FFFFFFE characters.

If the ComboBox does not have the $CBS_AUTOHSCROLL style, setting the text limit to be larger than the size of the edit control has no effect.

The <a href="_GUICtrlComboBox_LimitText.htm">_GUICtrlComboBox_LimitText()</a> function limits only the text the user can enter.
It has no effect on any text already in the edit control when the message is sent, nor does it affect the length of the text copied to the edit control when a string in the ListBox is selected.

The default limit to the text a user can enter in the edit control is 30,000 characters.


###Related###


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