###User Defined Function###
_WinAPI_ArcTo

###Description###
Draws an elliptical arc.

###Syntax###
#include <WinAPIGdi.au3>
_WinAPI_ArcTo ( $hDC, $tRECT, $iXRadial1, $iYRadial1, $iXRadial2, $iYRadial2 )


###Parameters###
@@ParamTable@@
$hDC
	Handle to the device context.
$tRECT
	$tagRECT structure that contains the logical coordinates of the bounding rectangle.
$iXRadial1
	The x-coordinate, in logical units, of the endpoint of the radial defining the starting point of the arc.
$iYRadial1
	The y-coordinate, in logical units, of the endpoint of the radial defining the starting point of the arc.
$iXRadial2
	The x-coordinate, in logical units, of the endpoint of the radial defining the ending point of the arc.
$iYRadial2
	The y-coordinate, in logical units, of the endpoint of the radial defining the ending point of the arc.
@@End@@

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


###Remarks###
The arc is drawn using the current pen; it is not filled. <a href="_WinAPI_ArcTo.htm">_WinAPI_ArcTo()</a> is similar to the <a href="_WinAPI_Arc.htm">_WinAPI_Arc()</a> function, except that the current position is updated.


###Related###
_WinAPI_Arc


###See Also###
@@MsdnLink@@ ArcTo


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