次の方法で共有


ICanvas.DrawArc メソッド

定義

キャンバスに円弧を描画します。

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

パラメーター

x
Single

x開始座標。

y
Single

y開始座標。

width
Single

円弧の幅。

height
Single

円弧の高さ。

startAngle
Single

x 軸から円弧の始点までの角度。

endAngle
Single

x 軸から円弧の終点までの角度。

clockwise
Boolean

true 円弧を時計回りの方向に描画する場合。 false 円弧を反時計回りに描画します。

closed
Boolean

true 円弧の終点を始点に接続するかどうかを指定します。 false それ以外の場合。

適用対象