###User Defined Function###
_GUICtrlListView_SetItemEx

###Description###
Sets some or all of a item's attributes

###Syntax###
#include <GuiListView.au3>
_GUICtrlListView_SetItemEx ( $hWnd, ByRef $tItem )


###Parameters###
@@ParamTable@@
$hWnd
	Control ID/Handle to the control
$tItem
	$tagLVITEM structure
@@End@@

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


###Remarks###
To set the attributes of an item set the Item member of the $tagLVITEM structure to the index of the item, and set the SubItem member to zero.
For an item, you can set the State, Text, Image, and Param members of the $tagLVITEM structure.

To set the text of a subitem, set the Item and SubItem members to indicate the specific subitem, and use the Text member to specify the text.
You cannot set the State or Param members for subitems because subitems do not have these attributes.


###Related###
_GUICtrlListView_SetItem, $tagLVITEM


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