Graphics.DrawPie

DrawPie(Pen, RectangleF, float, float)

Draws a pie shape defined by an ellipse specified by a RectangleF structure and two radial lines.

public void DrawPie(Pen pen, RectangleF rect, float startAngle, float sweepAngle)
ParameterTypeDescription
penPenPen that determines the color, width, and style of the pie shape.
rectRectangleFRectangleF structure that represents the bounding rectangle that defines the ellipse from which the pie shape comes.
startAngleSingleAngle measured in degrees clockwise from the x-axis to the first side of the pie shape.
sweepAngleSingleAngle measured in degrees clockwise from the startAngle parameter to the second side of the pie shape.

Exceptions

exceptioncondition
ArgumentNullExceptionpen is null.

See Also


DrawPie(Pen, float, float, float, float, float, float)

Draws a pie shape defined by an ellipse specified by a coordinate pair, a width, a height, and two radial lines.

public void DrawPie(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 pie shape.
xSingleThe x-coordinate of the upper-left corner of the bounding rectangle that defines the ellipse from which the pie shape comes.
ySingleThe y-coordinate of the upper-left corner of the bounding rectangle that defines the ellipse from which the pie shape comes.
widthSingleWidth of the bounding rectangle that defines the ellipse from which the pie shape comes.
heightSingleHeight of the bounding rectangle that defines the ellipse from which the pie shape comes.
startAngleSingleAngle measured in degrees clockwise from the x-axis to the first side of the pie shape.
sweepAngleSingleAngle measured in degrees clockwise from the startAngle parameter to the second side of the pie shape.

Exceptions

exceptioncondition
ArgumentNullExceptionpen is null.

See Also


DrawPie(Pen, Rectangle, float, float)

Draws a pie shape defined by an ellipse specified by a Rectangle structure and two radial lines.

public void DrawPie(Pen pen, Rectangle rect, float startAngle, float sweepAngle)
ParameterTypeDescription
penPenPen that determines the color, width, and style of the pie shape.
rectRectangleRectangle structure that represents the bounding rectangle that defines the ellipse from which the pie shape comes.
startAngleSingleAngle measured in degrees clockwise from the x-axis to the first side of the pie shape.
sweepAngleSingleAngle measured in degrees clockwise from the startAngle parameter to the second side of the pie shape.

Exceptions

exceptioncondition
ArgumentNullExceptionpen is null.

See Also


DrawPie(Pen, int, int, int, int, int, int)

Draws a pie shape defined by an ellipse specified by a coordinate pair, a width, a height, and two radial lines.

public void DrawPie(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 pie shape.
xInt32The x-coordinate of the upper-left corner of the bounding rectangle that defines the ellipse from which the pie shape comes.
yInt32The y-coordinate of the upper-left corner of the bounding rectangle that defines the ellipse from which the pie shape comes.
widthInt32Width of the bounding rectangle that defines the ellipse from which the pie shape comes.
heightInt32Height of the bounding rectangle that defines the ellipse from which the pie shape comes.
startAngleInt32Angle measured in degrees clockwise from the x-axis to the first side of the pie shape.
sweepAngleInt32Angle measured in degrees clockwise from the startAngle parameter to the second side of the pie shape.

Exceptions

exceptioncondition
ArgumentNullExceptionpen is null.

See Also