共用方式為


ICanvas.FillArc 方法

定義

將填滿的弧線繪製到畫布上。

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)

參數

x
Single

開始 x 座標。

y
Single

開始 y 座標。

width
Single

弧線的寬度。

height
Single

弧線的高度。

startAngle
Single

從 X 軸到弧線起點的角度。

endAngle
Single

從 X 軸到弧線終點的角度。

clockwise
Boolean

true 表示以順時針方向繪製弧線; false 以反時針繪製弧線。

適用於