Graphics.DrawArc

DrawArc(Pen, float, float, float, float, float, float)

Draws an arc representing a portion of an ellipse specified by a pair of coordinates, a width, and a height.

public void DrawArc(Pen pen, float x, float y, float width, float height, float startAngle, 
    float sweepAngle)
ParameterTypeDescription
penPenPen that determines the color, width, and style of the arc.
xSingleThe x-coordinate of the upper-left corner of the rectangle that defines the ellipse.
ySingleThe y-coordinate of the upper-left corner of the rectangle that defines the ellipse.
widthSingleWidth of the rectangle that defines the ellipse.
heightSingleHeight of the rectangle that defines the ellipse.
startAngleSingleAngle in degrees measured clockwise from the x-axis to the starting point of the arc.
sweepAngleSingleAngle in degrees measured clockwise from the startAngle parameter to ending point of the arc.

Exceptions

exceptioncondition
ArgumentNullExceptionpen is null.

See Also


DrawArc(Pen, RectangleF, float, float)

Draws an arc representing a portion of an ellipse specified by a RectangleF structure.

public void DrawArc(Pen pen, RectangleF rect, float startAngle, float sweepAngle)
ParameterTypeDescription
penPenPen that determines the color, width, and style of the arc.
rectRectangleFRectangleF structure that defines the boundaries of the ellipse.
startAngleSingleAngle in degrees measured clockwise from the x-axis to the starting point of the arc.
sweepAngleSingleAngle in degrees measured clockwise from the startAngle parameter to ending point of the arc.

Exceptions

exceptioncondition
ArgumentNullExceptionpen is null

See Also


DrawArc(Pen, int, int, int, int, int, int)

Draws an arc representing a portion of an ellipse specified by a pair of coordinates, a width, and a height.

public void DrawArc(Pen pen, int x, int y, int width, int height, int startAngle, int sweepAngle)
ParameterTypeDescription
penPenPen that determines the color, width, and style of the arc.
xInt32The x-coordinate of the upper-left corner of the rectangle that defines the ellipse.
yInt32The y-coordinate of the upper-left corner of the rectangle that defines the ellipse.
widthInt32Width of the rectangle that defines the ellipse.
heightInt32Height of the rectangle that defines the ellipse.
startAngleInt32Angle in degrees measured clockwise from the x-axis to the starting point of the arc.
sweepAngleInt32Angle in degrees measured clockwise from the startAngle parameter to ending point of the arc.

Exceptions

exceptioncondition
ArgumentNullExceptionpen is null.

See Also


DrawArc(Pen, Rectangle, float, float)

Draws an arc representing a portion of an ellipse specified by a Rectangle structure.

public void DrawArc(Pen pen, Rectangle rect, float startAngle, float sweepAngle)
ParameterTypeDescription
penPenPen that determines the color, width, and style of the arc.
rectRectangleRectangleF structure that defines the boundaries of the ellipse.
startAngleSingleAngle in degrees measured clockwise from the x-axis to the starting point of the arc.
sweepAngleSingleAngle in degrees measured clockwise from the startAngle parameter to ending point of the arc.

Exceptions

exceptioncondition
ArgumentNullExceptionpen is null.

See Also