Draws an arc.
Namespace:
Aurigma.GraphicsMill.Drawing
Assembly:
Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)
Public Sub DrawArc ( _ pen As Pen, _ x As Integer, _ y As Integer, _ width As Integer, _ height As Integer, _ startAngle As Single, _ sweepAngle As Single _ )
public void DrawArc( Pen pen, int x, int y, int width, int height, float startAngle, float sweepAngle )
Type: Aurigma.GraphicsMill.Drawing.Pen
Pen object which is used to draw an arc.Type: System.Int32
X-coordinate of the top left corner the bounding rectangle for the ellipse (see Remarks section).Type: System.Int32
Y-coordinate of the top left corner of the bounding rectangle for the ellipse (see Remarks section).Type: System.Int32
Width of the bounding rectangle for the ellipse (see Remarks section).Type: System.Int32
Height of the bounding rectangle for the ellipse (see Remarks section).Type: System.Single
An angle between x-axis and the first radial line which defines a sector on the ellipse.Type: System.Single
An angle between first and second radial line which defines a sector on the ellipse.All the coordinates are measured in units specified with Unit property.