###Function###
GUICtrlSetCursor

###Description###
Sets the mouse cursor icon for a particular control.

###Syntax###
GUICtrlSetCursor ( controlID, cursorID )


###Parameters###
@@ParamTable@@
controlID
	The control identifier (controlID) as returned by a <a href="GUICtrlCreate Management.htm">GUICtrlCreate...()</a> function, or -1 for the last created control.
cursorID
	cursor ID as used by Windows SetCursor API (use -1 for the default mouse cursor for the control)
@@End@@

###ReturnValue###
@@ReturnTable@@
Success:	1.
Failure:	0.
@@End@@


###Remarks###
Unlike <a href="GUISetCursor.htm">GUISetCursor()</a> which changes the mouse cursor for an entire window, this function sets the mouse cursor that is used when the mouse is hovering over the specified control.

If the cursorID is invalid the standard arrow will be displayed.

For a list of valid cursor IDs see <a href="MouseGetCursor.htm">MouseGetCursor()</a>.
CursorId = 16 will hide the mouse cursor.


###Related###
GUISetCursor


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