EasingDecimalKeyFrame Constructors

Definition

Overloads

EasingDecimalKeyFrame()

Initializes a new instance of the EasingDecimalKeyFrame class.

EasingDecimalKeyFrame(Decimal)

Initializes a new instance of the EasingDecimalKeyFrame class with the specified value.

EasingDecimalKeyFrame(Decimal, KeyTime)

Initializes a new instance of the EasingDecimalKeyFrame class with the specified value and key time.

EasingDecimalKeyFrame(Decimal, KeyTime, IEasingFunction)

Initializes a new instance of the EasingDecimalKeyFrame class with the specified value, key time, and easing function.

EasingDecimalKeyFrame()

Initializes a new instance of the EasingDecimalKeyFrame class.

public:
 EasingDecimalKeyFrame();
public EasingDecimalKeyFrame ();
Public Sub New ()

See also

Applies to

EasingDecimalKeyFrame(Decimal)

Initializes a new instance of the EasingDecimalKeyFrame class with the specified value.

public:
 EasingDecimalKeyFrame(System::Decimal value);
public EasingDecimalKeyFrame (decimal value);
new System.Windows.Media.Animation.EasingDecimalKeyFrame : decimal -> System.Windows.Media.Animation.EasingDecimalKeyFrame
Public Sub New (value As Decimal)

Parameters

value
Decimal

The initial value.

See also

Applies to

EasingDecimalKeyFrame(Decimal, KeyTime)

Initializes a new instance of the EasingDecimalKeyFrame class with the specified value and key time.

public:
 EasingDecimalKeyFrame(System::Decimal value, System::Windows::Media::Animation::KeyTime keyTime);
public EasingDecimalKeyFrame (decimal value, System.Windows.Media.Animation.KeyTime keyTime);
new System.Windows.Media.Animation.EasingDecimalKeyFrame : decimal * System.Windows.Media.Animation.KeyTime -> System.Windows.Media.Animation.EasingDecimalKeyFrame
Public Sub New (value As Decimal, keyTime As KeyTime)

Parameters

value
Decimal

The initial value.

keyTime
KeyTime

The initial key time.

See also

Applies to

EasingDecimalKeyFrame(Decimal, KeyTime, IEasingFunction)

Initializes a new instance of the EasingDecimalKeyFrame class with the specified value, key time, and easing function.

public:
 EasingDecimalKeyFrame(System::Decimal value, System::Windows::Media::Animation::KeyTime keyTime, System::Windows::Media::Animation::IEasingFunction ^ easingFunction);
public EasingDecimalKeyFrame (decimal value, System.Windows.Media.Animation.KeyTime keyTime, System.Windows.Media.Animation.IEasingFunction easingFunction);
new System.Windows.Media.Animation.EasingDecimalKeyFrame : decimal * System.Windows.Media.Animation.KeyTime * System.Windows.Media.Animation.IEasingFunction -> System.Windows.Media.Animation.EasingDecimalKeyFrame
Public Sub New (value As Decimal, keyTime As KeyTime, easingFunction As IEasingFunction)

Parameters

value
Decimal

The initial value.

keyTime
KeyTime

The initial key time.

easingFunction
IEasingFunction

The easing function.

See also

Applies to