###User Defined Function###
_GUICtrlMenu_SetItemBitmaps

###Description###
Associates the specified bitmap with a menu item

###Syntax###
#include <GuiMenu.au3>
_GUICtrlMenu_SetItemBitmaps ( $hMenu, $iItem, $hChecked, $hUnChecked [, $fByPos = True] )


###Parameters###
@@ParamTable@@
$hMenu
	Menu handle
$iItem
	Identifier or position of the menu item
$hChecked
	Handle to the bitmap displayed when the menu item is selected
$hUnChecked
	Handle to the bitmap displayed when the menu item is not selected
$fByPos
	[optional] Menu identifier flag:
		True - $iItem is a 0-based item position
		False - $iItem is a menu item identifier
@@End@@

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


###Remarks###
If either the $hUnchecked or $hChecked parameter is 0, the system displays nothing next to the menu item for the corresponding check state.
If both parameters are 0, the system displays the default check mark bitmap when the item is selected, and removes the bitmap when the item is not selected.


###Related###
_GUICtrlMenu_SetItemBmpChecked, _GUICtrlMenu_SetItemBmpUnchecked


###See Also###
@@MsdnLink@@ SetMenuItemBitmaps


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