Function Reference


_WinAPI_AngleArc

Draws a line segment and an arc

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

Parameters

$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.

Return Value

Success: True
Failure: False

Remarks

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.

See Also

Search AngleArc in MSDN Library.