EasingMode Enum
Definition
Specifies how the animation associated with an easing function interpolates.
public enum class EasingMode
/// [Windows.Foundation.Metadata.ContractVersion(Microsoft.UI.Xaml.WinUIContract, 65536)]
/// [Windows.Foundation.Metadata.WebHostHidden]
enum EasingMode
[Windows.Foundation.Metadata.ContractVersion(typeof(Microsoft.UI.Xaml.WinUIContract), 65536)]
[Windows.Foundation.Metadata.WebHostHidden]
public enum EasingMode
Public Enum EasingMode
<object property="enumMemberName"/>
- Inheritance
-
EasingMode
- Attributes
-
Windows.Foundation.Metadata.ContractVersionAttribute Windows.Foundation.Metadata.WebHostHiddenAttribute
Fields
EaseIn | 1 | Interpolation follows the mathematical formula associated with the easing function. |
EaseInOut | 2 | Interpolation uses EaseIn for the first half of the animation and EaseOut for the second half. |
EaseOut | 0 | Interpolation follows 100% interpolation minus the output of the formula associated with the easing function. |