###User Defined Function###
_GUICtrlListView_AddItem

###Description###
Adds a new item to the end of the list

###Syntax###
#include <GuiListView.au3>
_GUICtrlListView_AddItem ( $hWnd, $sText [, $iImage = -1 [, $iParam = 0]] )


###Parameters###
@@ParamTable@@
$hWnd
	Control ID/Handle to the control
$sText
	Item text. If set to -1, the item set is set via the $LVN_GETDISPINFO notification message.
$iImage
	[optional] 0-based index of the item's icon in the control's image list
$iParam
	[optional] Application Defined data
@@End@@

###ReturnValue###
@@ReturnTable@@
Success:	the index of the new item.
Failure:	-1
@@End@@.


###Remarks###
You can not use this function to insert subitems. Use <a href="_GUICtrlListView_AddSubItem.htm">_GUICtrlListView_AddSubItem()</a> to insert subitems.


###Related###
_GUICtrlListView_AddSubItem


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