ViewExtensions.RelScaleTo(VisualElement, Double, UInt32, Easing) Method

Definition

Returns a task that scales the VisualElement that is specified by view from its current scale to dscale.

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

Parameters

view
VisualElement

The view on which this method operates.

dscale
Double

The relative scale.

length
UInt32

The time, in milliseconds, over which to animate the transition. The default is 250.

easing
Easing

The easing function to use for the animation.

Returns

A Task containing a Boolean value which indicates whether the animation was canceled. true indicates that the animation was canceled. false indicates that the animation ran to completion.

Exceptions

Thrown when view is null.

Applies to