Draws a line segment and an arc
#include <WinAPIGdi.au3>
_WinAPI_AngleArc ( $hDC, $iX, $iY, $iRadius, $nStartAngle, $nSweepAngle )
$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. |
Success: | True |
Failure: | False |
The _WinAPI_AngleArc() 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.
Search AngleArc in MSDN Library.