次の方法で共有


CanvasExtensions.FillArc メソッド

定義

オーバーロード

FillArc(ICanvas, Single, Single, Single, Single, Single, Single, Paint, Boolean)

指定したペイントで円弧を塗りつぶします。 これは、四角形のサイズと場所に基づいてグラデーション ハンドルの位置を計算する必要がないように、円弧にグラデーションを塗りつぶす場合のヘルパー メソッドです。

FillArc(ICanvas, RectF, Single, Single, Boolean)

円弧を塗りつぶします。楕円の境界に対して既に四角形が定義されている場合に、円弧を塗りつぶすヘルパー メソッドです。

FillArc(ICanvas, Rect, Single, Single, Boolean)

円弧を塗りつぶします。楕円の境界に対して既に四角形が定義されている場合に、円弧を塗りつぶすヘルパー メソッドです。

FillArc(ICanvas, Single, Single, Single, Single, Single, Single, Paint, Boolean)

指定したペイントで円弧を塗りつぶします。 これは、四角形のサイズと場所に基づいてグラデーション ハンドルの位置を計算する必要がないように、円弧にグラデーションを塗りつぶす場合のヘルパー メソッドです。

public:
[System::Runtime::CompilerServices::Extension]
 static void FillArc(Microsoft::Maui::Graphics::ICanvas ^ canvas, float x, float y, float width, float height, float startAngle, float endAngle, Microsoft::Maui::Graphics::Paint ^ paint, bool clockwise);
public static void FillArc (this Microsoft.Maui.Graphics.ICanvas canvas, float x, float y, float width, float height, float startAngle, float endAngle, Microsoft.Maui.Graphics.Paint paint, bool clockwise);
static member FillArc : Microsoft.Maui.Graphics.ICanvas * single * single * single * single * single * single * Microsoft.Maui.Graphics.Paint * bool -> unit
<Extension()>
Public Sub FillArc (canvas As ICanvas, x As Single, y As Single, width As Single, height As Single, startAngle As Single, endAngle As Single, paint As Paint, clockwise As Boolean)

パラメーター

canvas
ICanvas

Canvas

x
Single

x 座標。

y
Single

y 座標。

width
Single

四角形の幅。

height
Single

四角形の高さ

startAngle
Single

開始角度

endAngle
Single

終了角度

paint
Paint

ペイント

clockwise
Boolean

円弧を描画する方向

適用対象

FillArc(ICanvas, RectF, Single, Single, Boolean)

円弧を塗りつぶします。楕円の境界に対して既に四角形が定義されている場合に、円弧を塗りつぶすヘルパー メソッドです。

public:
[System::Runtime::CompilerServices::Extension]
 static void FillArc(Microsoft::Maui::Graphics::ICanvas ^ canvas, Microsoft::Maui::Graphics::RectF bounds, float startAngle, float endAngle, bool clockwise);
public static void FillArc (this Microsoft.Maui.Graphics.ICanvas canvas, Microsoft.Maui.Graphics.RectF bounds, float startAngle, float endAngle, bool clockwise);
static member FillArc : Microsoft.Maui.Graphics.ICanvas * Microsoft.Maui.Graphics.RectF * single * single * bool -> unit
<Extension()>
Public Sub FillArc (canvas As ICanvas, bounds As RectF, startAngle As Single, endAngle As Single, clockwise As Boolean)

パラメーター

canvas
ICanvas

Canvas

bounds
RectF

楕円の境界。

startAngle
Single

開始角度

endAngle
Single

終了角度

clockwise
Boolean

円弧を描画する方向

適用対象

FillArc(ICanvas, Rect, Single, Single, Boolean)

円弧を塗りつぶします。楕円の境界に対して既に四角形が定義されている場合に、円弧を塗りつぶすヘルパー メソッドです。

public:
[System::Runtime::CompilerServices::Extension]
 static void FillArc(Microsoft::Maui::Graphics::ICanvas ^ canvas, Microsoft::Maui::Graphics::Rect bounds, float startAngle, float endAngle, bool clockwise);
public static void FillArc (this Microsoft.Maui.Graphics.ICanvas canvas, Microsoft.Maui.Graphics.Rect bounds, float startAngle, float endAngle, bool clockwise);
static member FillArc : Microsoft.Maui.Graphics.ICanvas * Microsoft.Maui.Graphics.Rect * single * single * bool -> unit
<Extension()>
Public Sub FillArc (canvas As ICanvas, bounds As Rect, startAngle As Single, endAngle As Single, clockwise As Boolean)

パラメーター

canvas
ICanvas

Canvas

bounds
Rect

楕円の境界。

startAngle
Single

開始角度

endAngle
Single

終了角度

clockwise
Boolean

円弧を描画する方向

適用対象