EasingSizeKeyFrame Constructors

Definition

Initializes a new instance of the EasingSizeKeyFrame class.

Overloads

EasingSizeKeyFrame()

Initializes a new instance of the EasingSizeKeyFrame class.

EasingSizeKeyFrame(Size)

Initializes a new instance of the EasingSizeKeyFrame class with the specified Size value.

EasingSizeKeyFrame(Size, KeyTime)

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

EasingSizeKeyFrame(Size, KeyTime, IEasingFunction)

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

EasingSizeKeyFrame()

Initializes a new instance of the EasingSizeKeyFrame class.

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

See also

Applies to

EasingSizeKeyFrame(Size)

Initializes a new instance of the EasingSizeKeyFrame class with the specified Size value.

public:
 EasingSizeKeyFrame(System::Windows::Size value);
public EasingSizeKeyFrame (System.Windows.Size value);
new System.Windows.Media.Animation.EasingSizeKeyFrame : System.Windows.Size -> System.Windows.Media.Animation.EasingSizeKeyFrame
Public Sub New (value As Size)

Parameters

value
Size

The initial Size value.

See also

Applies to

EasingSizeKeyFrame(Size, KeyTime)

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

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

Parameters

value
Size

The initial Size value.

keyTime
KeyTime

The initial key time.

See also

Applies to

EasingSizeKeyFrame(Size, KeyTime, IEasingFunction)

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

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

Parameters

value
Size

The initial Size value.

keyTime
KeyTime

The initial key time.

easingFunction
IEasingFunction

The easing function.

See also

Applies to