EasingMode Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies how the animation associated with an easing function interpolates.
public enum class EasingMode
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
enum class EasingMode
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
public enum EasingMode
Public Enum EasingMode
<object property="enumMemberName"/>
- Inheritance
-
EasingMode
- Attributes
Windows requirements
Device family |
Windows 10 (introduced in 10.0.10240.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduced in v1.0)
|
Fields
Name | Value | Description |
---|---|---|
EaseOut | 0 | Interpolation follows 100% interpolation minus the output of the formula associated with the easing function. |
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. |