###User Defined Function###
_WinAPI_DrawShadowText

###Description###
Draws formatted text in the specified rectangle with a drop shadow.

###Syntax###
#include <WinAPIGdi.au3>
_WinAPI_DrawShadowText ( $hDC, $sText, $rgbText, $rgbShadow [, $iXOffset = 0 [, $iYOffset = 0 [, $tRECT = 0 [, $iFlags = 0]]]] )


###Parameters###
@@ParamTable@@
$hDC
	Handle to a device context.
$sText
	The string that contains the text to be drawn.
$rgbText
	The color of the text, in RGB.
$rgbShadow
	The color of the shadow, in RGB.
$iXOffset
	[optional] The x-coordinate of where the text should begin. Default is 0.
$iYOffset
	[optional] The y-coordinate of where the text should begin. Default is 0.
$tRECT
	[optional] $tagRECT structure that contains, in logical coordinates, the rectangle in which the text is to be drawn.
	If this parameter is 0 (Default), the size will be equal size of the device context ($hDC).
$iFlags
	[optional] The flags that specifies how the text is to be drawn. This parameter can be a combination of the formatting text constants ($DT_*).
@@End@@

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


###Remarks###
None


###Related###


###See Also###
@@MsdnLink@@ DrawShadowText


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