언어

ViewExtensions.RotateXToAsync 메서드

정의

오버로드

Name Description
RotateXToAsync(VisualElement, Double, UInt32, Easing)

시간이 걸리고 사용VisualElement함으로써 지정 viewrotation한 X축을 length 기울이는 작업을 반환 easing 합니다.

RotateXToAsync(VisualElement, Double, UInt32, Easing, CancellationToken)

시간이 걸리고 사용VisualElement함으로써 지정 viewrotation한 X축을 length 기울이는 작업을 반환 easing 합니다.

RotateXToAsync(VisualElement, Double, UInt32, Easing)

Source:
ViewExtensions.cs
Source:
ViewExtensions.cs

시간이 걸리고 사용VisualElement함으로써 지정 viewrotation한 X축을 length 기울이는 작업을 반환 easing 합니다.

public static System.Threading.Tasks.Task<bool> RotateXToAsync(this Microsoft.Maui.Controls.VisualElement view, double rotation, uint length = 250, Microsoft.Maui.Easing? easing = default);
static member RotateXToAsync : Microsoft.Maui.Controls.VisualElement * double * uint32 * Microsoft.Maui.Easing -> System.Threading.Tasks.Task<bool>
<Extension()>
Public Function RotateXToAsync (view As VisualElement, rotation As Double, Optional length As UInteger = 250, Optional easing As Easing = Nothing) As Task(Of Boolean)

매개 변수

view
VisualElement

이 메서드가 작동하는 뷰입니다.

rotation
Double

최종 회전 값입니다.

length
UInt32

전환에 애니메이션 효과를 주려는 시간(밀리초)입니다. 기본값은 250입니다.

easing
Easing

애니메이션에 사용할 감속/가속 함수입니다.

반품

Task 애니메이션이 Boolean 취소되었는지 여부를 나타내는 값이 들어 있는 값입니다. true 는 애니메이션이 취소되었음을 나타냅니다. false 는 애니메이션이 완료될 때 실행되었음을 나타냅니다.

예외

throw되는 경우 view .null

적용 대상

RotateXToAsync(VisualElement, Double, UInt32, Easing, CancellationToken)

시간이 걸리고 사용VisualElement함으로써 지정 viewrotation한 X축을 length 기울이는 작업을 반환 easing 합니다.

public:
[System::Runtime::CompilerServices::Extension]
 static System::Threading::Tasks::Task<bool> ^ RotateXToAsync(Microsoft::Maui::Controls::VisualElement ^ view, double rotation, System::UInt32 length, Microsoft::Maui::Easing ^ easing, System::Threading::CancellationToken cancellationToken);
public static System.Threading.Tasks.Task<bool> RotateXToAsync(this Microsoft.Maui.Controls.VisualElement view, double rotation, uint length, Microsoft.Maui.Easing? easing, System.Threading.CancellationToken cancellationToken);
static member RotateXToAsync : Microsoft.Maui.Controls.VisualElement * double * uint32 * Microsoft.Maui.Easing * System.Threading.CancellationToken -> System.Threading.Tasks.Task<bool>
<Extension()>
Public Function RotateXToAsync (view As VisualElement, rotation As Double, length As UInteger, easing As Easing, cancellationToken As CancellationToken) As Task(Of Boolean)

매개 변수

view
VisualElement

이 메서드가 작동하는 뷰입니다.

rotation
Double

최종 회전 값입니다.

length
UInt32

전환에 애니메이션 효과를 주려는 시간(밀리초)입니다. 기본값은 250입니다.

easing
Easing

애니메이션에 사용할 감속/가속 함수입니다.

cancellationToken
CancellationToken

CancellationToken 애니메이션을 취소하는 A입니다.

반품

Task 애니메이션이 Boolean 취소되었는지 여부를 나타내는 값이 들어 있는 값입니다. true 는 애니메이션이 취소되었음을 나타냅니다. false 는 애니메이션이 완료될 때 실행되었음을 나타냅니다.

예외

throw되는 경우 view .null

적용 대상