Version

EasingFunctionType Enumeration

The type of EasingFunction used when the control is animating.
Syntax
'Declaration
 
Public Enum EasingFunctionType 
   Inherits System.Enum
public enum EasingFunctionType : System.Enum 
Members
MemberDescription
BounceEaseThe animation simulates a bouncing effect.
CircleEaseThe animation is controlled by a circular function.
CubicEaseThe animation accelerates using a formula where the time is raised to the power of 3.
CustomEaseThe animation is controlled by a custom user-provided function.
NoneThe animation will be played without using any easing functions.
QuadricEaseThe animation accelerates using a formula where the time is raised to the power of 2.
QuarticEaseThe animation accelerates using a formula where the time is raised to the power of 4.
QuinticEaseThe animation accelerates using a formula where the time is raised to the power of 5.
SineEaseThe animation completes once, then it is reversed and completed once again.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also