DrawArc Method
DrawArc(Pen, Point, Double, Double, Double)
Draws an arc representing a portion of a circle specified by a center Point and a radius.
Declaration
public void DrawArc(Pen pen, Point center, double radius, double startAngle, double sweepAngle)
Parameters
Type | Name | Description |
---|---|---|
Pen | pen | Pen that determines the color, width, and style of the arc. |
Point | center | Point structure that defines the center of the circle. |
System.Double | radius | Defines the radius of the circle. |
System.Double | startAngle | Angle in degrees measured clockwise from the x-axis to the starting point of the arc. |
System.Double | sweepAngle | Angle in degrees measured clockwise from the
|