Share via


ICanvas.FillArc Method

Definition

Draws a filled arc onto the canvas.

public:
 void FillArc(float x, float y, float width, float height, float startAngle, float endAngle, bool clockwise);
public void FillArc (float x, float y, float width, float height, float startAngle, float endAngle, bool clockwise);
abstract member FillArc : single * single * single * single * single * single * bool -> unit
Public Sub FillArc (x As Single, y As Single, width As Single, height As Single, startAngle As Single, endAngle As Single, clockwise As Boolean)

Parameters

x
Single

Starting x coordinate.

y
Single

Starting y coordinate.

width
Single

Width of the arc.

height
Single

Height of the arc.

startAngle
Single

The angle from the x-axis to the start point of the arc.

endAngle
Single

The angle from the x-axis to the end point of the arc.

clockwise
Boolean

true to draw the arc in a clockwise direction; false to draw the arc counterclockwise.

Applies to