diff --git a/src/Controls/src/Core/ViewExtensions.cs b/src/Controls/src/Core/ViewExtensions.cs index 0b506043a0bc..e82431bbace6 100644 --- a/src/Controls/src/Core/ViewExtensions.cs +++ b/src/Controls/src/Core/ViewExtensions.cs @@ -66,6 +66,7 @@ void UpdateProperty(double f) /// The opacity to fade to. /// The time, in milliseconds, over which to animate the transition. The default is 250. /// The easing function to use for the animation. + /// A containing a value which indicates whether the animation was canceled. indicates that the animation was canceled. indicates that the animation ran to completion. /// Thrown when is . public static Task FadeTo(this VisualElement view, double opacity, uint length = 250, Easing? easing = null) { @@ -83,6 +84,7 @@ public static Task FadeTo(this VisualElement view, double opacity, uint le /// The layout bounds. /// The time, in milliseconds, over which to animate the transition. The default is 250. /// The easing function to use for the animation. + /// A containing a value which indicates whether the animation was canceled. indicates that the animation was canceled. indicates that the animation ran to completion. /// Thrown when is . public static Task LayoutTo(this VisualElement view, Rect bounds, uint length = 250, Easing? easing = null) { @@ -110,6 +112,7 @@ public static Task LayoutTo(this VisualElement view, Rect bounds, uint len /// The relative rotation. /// The time, in milliseconds, over which to animate the transition. The default is 250. /// The easing function to use for the animation. + /// A containing a value which indicates whether the animation was canceled. indicates that the animation was canceled. indicates that the animation ran to completion. /// Thrown when is . public static Task RelRotateTo(this VisualElement view, double drotation, uint length = 250, Easing? easing = null) { @@ -127,6 +130,7 @@ public static Task RelRotateTo(this VisualElement view, double drotation, /// The relative scale. /// The time, in milliseconds, over which to animate the transition. The default is 250. /// The easing function to use for the animation. + /// A containing a value which indicates whether the animation was canceled. indicates that the animation was canceled. indicates that the animation ran to completion. /// Thrown when is . public static Task RelScaleTo(this VisualElement view, double dscale, uint length = 250, Easing? easing = null) { @@ -144,6 +148,7 @@ public static Task RelScaleTo(this VisualElement view, double dscale, uint /// The final rotation value. /// The time, in milliseconds, over which to animate the transition. The default is 250. /// The easing function to use for the animation. + /// A containing a value which indicates whether the animation was canceled. indicates that the animation was canceled. indicates that the animation ran to completion. /// Thrown when is . public static Task RotateTo(this VisualElement view, double rotation, uint length = 250, Easing? easing = null) { @@ -161,6 +166,7 @@ public static Task RotateTo(this VisualElement view, double rotation, uint /// The final rotation value. /// The time, in milliseconds, over which to animate the transition. The default is 250. /// The easing function to use for the animation. + /// A containing a value which indicates whether the animation was canceled. indicates that the animation was canceled. indicates that the animation ran to completion. /// Thrown when is . public static Task RotateXTo(this VisualElement view, double rotation, uint length = 250, Easing? easing = null) { @@ -178,6 +184,7 @@ public static Task RotateXTo(this VisualElement view, double rotation, uin /// The final rotation value. /// The time, in milliseconds, over which to animate the transition. The default is 250. /// The easing function to use for the animation. + /// A containing a value which indicates whether the animation was canceled. indicates that the animation was canceled. indicates that the animation ran to completion. /// Thrown when is . public static Task RotateYTo(this VisualElement view, double rotation, uint length = 250, Easing? easing = null) { @@ -194,6 +201,7 @@ public static Task RotateYTo(this VisualElement view, double rotation, uin /// The final absolute scale. /// The time, in milliseconds, over which to animate the transition. The default is 250. /// The easing function to use for the animation. + /// A containing a value which indicates whether the animation was canceled. indicates that the animation was canceled. indicates that the animation ran to completion. /// Thrown when is . public static Task ScaleTo(this VisualElement view, double scale, uint length = 250, Easing? easing = null) { @@ -211,6 +219,7 @@ public static Task ScaleTo(this VisualElement view, double scale, uint len /// The final absolute scale. /// The time, in milliseconds, over which to animate the transition. The default is 250. /// The easing function to use for the animation. + /// A containing a value which indicates whether the animation was canceled. indicates that the animation was canceled. indicates that the animation ran to completion. /// Thrown when is . public static Task ScaleXTo(this VisualElement view, double scale, uint length = 250, Easing? easing = null) { @@ -228,6 +237,7 @@ public static Task ScaleXTo(this VisualElement view, double scale, uint le /// The final absolute scale. /// The time, in milliseconds, over which to animate the transition. The default is 250. /// The easing function to use for the animation. + /// A containing a value which indicates whether the animation was canceled. indicates that the animation was canceled. indicates that the animation ran to completion. /// Thrown when is . public static Task ScaleYTo(this VisualElement view, double scale, uint length = 250, Easing? easing = null) { @@ -246,6 +256,7 @@ public static Task ScaleYTo(this VisualElement view, double scale, uint le /// The y component of the final translation vector. /// The time, in milliseconds, over which to animate the transition. The default is 250. /// The easing function to use for the animation. + /// A containing a value which indicates whether the animation was canceled. indicates that the animation was canceled. indicates that the animation ran to completion. /// Thrown when is . public static Task TranslateTo(this VisualElement view, double x, double y, uint length = 250, Easing? easing = null) {