Graphics.DrawArc
Contents
[
Hide
]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)
Parameter | Type | Description |
---|---|---|
pen | Pen | Pen that determines the color, width, and style of the arc. |
rect | RectangleF | RectangleF structure that defines the boundaries of the ellipse. |
startAngle | Single | Angle in degrees measured clockwise from the x-axis to the starting point of the arc. |
sweepAngle | Single | Angle in degrees measured clockwise from the startAngle parameter to ending point of the arc. |
See Also
- class Pen
- struct RectangleF
- class Graphics
- namespace System.Drawing
- assembly Aspose.Drawing
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)
Parameter | Type | Description |
---|---|---|
pen | Pen | Pen that determines the color, width, and style of the arc. |
x | Single | The x-coordinate of the upper-left corner of the rectangle that defines the ellipse. |
y | Single | The y-coordinate of the upper-left corner of the rectangle that defines the ellipse. |
width | Single | Width of the rectangle that defines the ellipse. |
height | Single | Height of the rectangle that defines the ellipse. |
startAngle | Single | Angle in degrees measured clockwise from the x-axis to the starting point of the arc. |
sweepAngle | Single | Angle in degrees measured clockwise from the startAngle parameter to ending point of the arc. |
See Also
- class Pen
- class Graphics
- namespace System.Drawing
- assembly Aspose.Drawing