This documentation is for the old version. Go to the latest Graphics Mill docs

GdiGraphics.DrawArc Method (Pen, RectangleF, Single, Single)

Draws an arc.

Namespace: Aurigma.GraphicsMill.Drawing
Assembly: Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

Visual Basic
Public Sub DrawArc ( _
	pen As Pen, _
	rect As RectangleF, _
	startAngle As Single, _
	sweepAngle As Single _
)
C#
public void DrawArc(
	Pen pen,
	RectangleF rect,
	float startAngle,
	float sweepAngle
)

Parameters

pen

Type: Aurigma.GraphicsMill.Drawing.Pen

Pen object which is used to draw an arc.
rect

Type: System.Drawing.RectangleF

The bounding rectangle for the ellipse (see Remarks section).
startAngle

Type: System.Single

An angle between x-axis and the first radial line which defines a sector on the ellipse.
sweepAngle

Type: System.Single

An angle between first and second radial line which defines a sector on the ellipse.

Remarks

Arc is a part of the ellipse. In this method arc is defined with a tightest bounding rectangle of this ellipse and two angles which specifies necessary ellipse sector.

All the coordinates are measured in units specified with Unit property.

See Also

Reference