###User Defined Function###
_GUICtrlListView_SetBkImage

###Description###
Sets the background image in the control

###Syntax###
#include <GuiListView.au3>
_GUICtrlListView_SetBkImage ( $hWnd [, $sURL = "" [, $iStyle = 0 [, $iXOffset = 0 [, $iYOffset = 0]]]] )


###Parameters###
@@ParamTable@@
$hWnd
	Control ID/Handle to the control
$sURL
	[optional] URL of the background image. If blank, the control has no background
$iStyle
	[optional] Determines the background image style:
		0 - Normal
		1 - Tiled
$iXOffset
	[optional] Percentage of the control's client area that the image should be offset horizontally.
	Only valid when 0 is used in $iStyle.
$iYOffset
	[optional] Percentage of the control's client area that the image should be offset vertically.
	Only valid when 0 is used in $iStyle.
@@End@@

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


###Remarks###
Call CoUninitialize when the application is terminating.
At this time this function only works with <a href="_GUICtrlListView_Create.htm">_GUICtrlListView_Create()</a> or External ListViews.


###Related###
_GUICtrlListView_Create, _GUICtrlListView_GetBkImage


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