Skip to main content

GraphicsCache.DrawArc(Pen, Int32, Int32, Int32, Int32, Int32, Int32) Method

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

Namespace: DevExpress.Utils.Drawing

Assembly: DevExpress.Utils.v23.2.dll

NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core

Declaration

public void DrawArc(
    Pen pen,
    int x,
    int y,
    int width,
    int height,
    int startAngle,
    int sweepAngle
)

Parameters

Name Type Description
pen Pen

Pen that determines the color, width, and style of the arc.

x Int32

The x-coordinate of the upper-left corner of the rectangle that defines the ellipse.

y Int32

The y-coordinate of the upper-left corner of the rectangle that defines the ellipse.

width Int32

Width of the rectangle that defines the ellipse.

height Int32

Height of the rectangle that defines the ellipse.

startAngle Int32

Angle in degrees measured clockwise from the x-axis to the starting point of the arc.

sweepAngle Int32

Angle in degrees measured clockwise from the startAngle parameter to ending point of the arc.

See Also