GraphicsIHandlerDrawArc Method |
Draws an arc with the specified pen
Namespace:
Eto.Drawing
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax void DrawArc(
Pen pen,
float x,
float y,
float width,
float height,
float startAngle,
float sweepAngle
)
Sub DrawArc (
pen As Pen,
x As Single,
y As Single,
width As Single,
height As Single,
startAngle As Single,
sweepAngle As Single
)
abstract DrawArc :
pen : Pen *
x : float32 *
y : float32 *
width : float32 *
height : float32 *
startAngle : float32 *
sweepAngle : float32 -> unit
Parameters
- pen
- Type: Eto.DrawingPen
Pen to outline the arc - x
- Type: SystemSingle
X co-ordinate of the upper left corner of the arc - y
- Type: SystemSingle
Y co-ordinate of the upper left corner of the arc - width
- Type: SystemSingle
Width of the arc - height
- Type: SystemSingle
Height of the arc - startAngle
- Type: SystemSingle
Elliptical (skewed) angle in degrees from the x-axis to the starting point of the arc - sweepAngle
- Type: SystemSingle
Angle in degrees from the startAngle to the ending point of the arc
See Also