###User Defined Function###
_GUICtrlButton_SetSplitInfo

###Description###
Gets information for a split button control

###Syntax###
#include <GuiButton.au3>
_GUICtrlButton_SetSplitInfo ( $hWnd [, $himlGlyph = -1 [, $iSplitStyle = $BCSS_ALIGNLEFT [, $iWidth = 0 [, $iHeight = 0]]]] )


###Parameters###
@@ParamTable@@
$hWnd
	Control ID/Handle to the control
$himlGlyph
	[optional] Handle to the image list
$iSplitStyle
	[optional] The split button style. Value must be one or more of the following flags.
		$BCSS_ALIGNLEFT - Align the image or glyph horizontally with the left margin
		$BCSS_IMAGE - Draw an icon image as the glyph
		$BCSS_NOSPLIT - No split
		$BCSS_STRETCH - Stretch glyph, but try to retain aspect ratio
$iWidth
	[optional] Width of the glyph
$iHeight
	[optional] Height of the glyph
@@End@@

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


###Remarks###
This function works only with the $BS_SPLITBUTTON and $BS_DEFSPLITBUTTON button styles.

<strong>Windows Vista or later</strong>.


###Related###
_GUICtrlButton_GetSplitInfo


###See Also###
@@MsdnLink@@ BCM_SETSPLITINFO


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