ICanvas.FillArc Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.