###User Defined Function###
_GUICtrlButton_GetSplitInfo

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

###Syntax###
#include <GuiButton.au3>
_GUICtrlButton_GetSplitInfo ( $hWnd )


###Parameters###
@@ParamTable@@
$hWnd
	Control ID/Handle to the control
@@End@@

###ReturnValue###
@@ReturnTable@@
Success:	an array of the following
	[0] - A handle to the image list
	[1] - The split button style, can be one or more of the following:
		$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
	[2] - Width of the glyph
	[3] - Height of the glyph
Failure:	sets the @error flag to non-zero.
@@End@@


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

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


###Related###
_GUICtrlButton_SetSplitInfo


###See Also###
@@MsdnLink@@ BCM_GETSPLITINFO


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