###User Defined Function###
_WinAPI_AngleArc

###Description###
Draws a line segment and an arc.

###Syntax###
#include <WinAPIGdi.au3>
_WinAPI_AngleArc ( $hDC, $iX, $iY, $iRadius, $nStartAngle, $nSweepAngle )


###Parameters###
@@ParamTable@@
$hDC
	Handle to a device context.
$iX
	The x-coordinate, in logical units, of the center of the circle.
$iY
	The y-coordinate, in logical units, of the center of the circle.
$iRadius
	The radius, in logical units, of the circle.
$nStartAngle
	The start angle, in degrees, relative to the x-axis.
$nSweepAngle
	The sweep angle, in degrees, relative to the starting angle.
@@End@@

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


###Remarks###
The <a href="_WinAPI_AngleArc.htm">_WinAPI_AngleArc()</a> function draws lines by using the current pen. The figure is not filled.
This function moves the current position to the ending point of the arc.


###Related###


###See Also###
@@MsdnLink@@ AngleArc
