###User Defined Function###
_GUICtrlToolbar_SetRows

###Description###
Sets the number of rows of buttons

###Syntax###
#include <GuiToolbar.au3>
_GUICtrlToolbar_SetRows ( $hWnd, $iRows [, $fLarger = True] )


###Parameters###
@@ParamTable@@
$hWnd
	Handle to the control
$iRows
	Number of rows requested. The minimum number of rows is one, and the maximum number of rows is equal to the total number of buttons.
$fLarger
	[optional] Flag that indicates whether to create more rows than requested when the system can not create the number of rows specified by $iRows.
	If this parameter is True, the system creates more rows.
	If it is False, the system creates fewer rows.
@@End@@

###ReturnValue###
Returns an array with the following format:
	[0] - X coordinate of the upper left corner of the rectangle
	[1] - Y coordinate of the upper left corner of the rectangle
	[2] - X coordinate of the lower right corner of the rectangle
	[3] - Y coordinate of the lower right corner of the rectangle


###Remarks###
Because the system does not break up button groups when setting the number of rows, the resulting number of rows might differ from the number requested.


###Related###
_GUICtrlToolbar_GetRows


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