###User Defined Function###
_GUICtrlMenu_CheckRadioItem

###Description###
Checks a specified menu item and makes it a radio item

###Syntax###
#include <GuiMenu.au3>
_GUICtrlMenu_CheckRadioItem ( $hMenu, $iFirst, $iLast, $iCheck [, $fByPos = True] )


###Parameters###
@@ParamTable@@
$hMenu
	Handle of the menu
$iFirst
	Identifier or position of the first menu item in the group
$iLast
	Identifier or position of the last menu item in the group
$iCheck
	Identifier or position of the menu item to check
$fByPos
	[optional] Menu identifier flag:
		True - $iFirst, $iLast and $iCheck are a 0-based item position
		False - $iFirst, $iLast and $iCheck are a menu item identifier
@@End@@

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


###Remarks###
This function sets the $MFT_RADIOCHECK type flag and the $MFS_CHECKED state for the item specified by $iCheck and, at the same time, clears both flags for all other items in the group. The checked item is displayed using a bullet bitmap instead of a check-mark bitmap.


###Related###
_GUICtrlMenu_CheckMenuItem


###See Also###
@@MsdnLink@@ CheckMenuRadioItem


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