다음을 통해 공유


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

캔버스

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

캔버스

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

캔버스

bounds
Rect

타원 범위입니다.

startAngle
Single

시작 각도

endAngle
Single

끝 각도

clockwise
Boolean

호를 그릴 방향

적용 대상