###User Defined Function###
_WinAPI_ExtFloodFill

###Description###
Fills an area of the display surface with the current brush.

###Syntax###
#include <WinAPIGdi.au3>
_WinAPI_ExtFloodFill ( $hDC, $iX, $iY, $iRGB [, $iType = 0] )


###Parameters###
@@ParamTable@@
$hDC
	Handle to the device context.
$iX
	The x-coordinate, in logical units, of the point where filling is to start.
$iY
	The y-coordinate, in logical units, of the point where filling is to start.
$iRGB
	The color of the boundary or of the area to be filled, in RGB.
	The interpretation of color depends on the value of the $iType parameter.
$iType
	[optional] The type of fill operation to be performed.
	This parameter must be one of the following values:
		$FLOODFILLBORDER (Default)
		$FLOODFILLSURFACE
@@End@@

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


###Remarks###
None


###Related###


###See Also###
@@MsdnLink@@ ExtFloodFill


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