EasingThicknessKeyFrame Constructors
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.
Initializes a new instance of the EasingThicknessKeyFrame class.
Overloads
EasingThicknessKeyFrame() |
Initializes a new instance of the EasingThicknessKeyFrame class. |
EasingThicknessKeyFrame(Thickness) |
Initializes a new instance of the EasingThicknessKeyFrame class with the specified Thickness value. |
EasingThicknessKeyFrame(Thickness, KeyTime) |
Initializes a new instance of the EasingThicknessKeyFrame class with the specified Thickness value and key time. |
EasingThicknessKeyFrame(Thickness, KeyTime, IEasingFunction) |
Initializes a new instance of the EasingThicknessKeyFrame class with the specified Thickness value, key time, and easing function. |
EasingThicknessKeyFrame()
Initializes a new instance of the EasingThicknessKeyFrame class.
public:
EasingThicknessKeyFrame();
public EasingThicknessKeyFrame ();
Public Sub New ()
Applies to
EasingThicknessKeyFrame(Thickness)
Initializes a new instance of the EasingThicknessKeyFrame class with the specified Thickness value.
public:
EasingThicknessKeyFrame(System::Windows::Thickness value);
public EasingThicknessKeyFrame (System.Windows.Thickness value);
new System.Windows.Media.Animation.EasingThicknessKeyFrame : System.Windows.Thickness -> System.Windows.Media.Animation.EasingThicknessKeyFrame
Public Sub New (value As Thickness)
Parameters
Applies to
EasingThicknessKeyFrame(Thickness, KeyTime)
Initializes a new instance of the EasingThicknessKeyFrame class with the specified Thickness value and key time.
public:
EasingThicknessKeyFrame(System::Windows::Thickness value, System::Windows::Media::Animation::KeyTime keyTime);
public EasingThicknessKeyFrame (System.Windows.Thickness value, System.Windows.Media.Animation.KeyTime keyTime);
new System.Windows.Media.Animation.EasingThicknessKeyFrame : System.Windows.Thickness * System.Windows.Media.Animation.KeyTime -> System.Windows.Media.Animation.EasingThicknessKeyFrame
Public Sub New (value As Thickness, keyTime As KeyTime)
Parameters
- keyTime
- KeyTime
The initial key time.
Applies to
EasingThicknessKeyFrame(Thickness, KeyTime, IEasingFunction)
Initializes a new instance of the EasingThicknessKeyFrame class with the specified Thickness value, key time, and easing function.
public:
EasingThicknessKeyFrame(System::Windows::Thickness value, System::Windows::Media::Animation::KeyTime keyTime, System::Windows::Media::Animation::IEasingFunction ^ easingFunction);
public EasingThicknessKeyFrame (System.Windows.Thickness value, System.Windows.Media.Animation.KeyTime keyTime, System.Windows.Media.Animation.IEasingFunction easingFunction);
new System.Windows.Media.Animation.EasingThicknessKeyFrame : System.Windows.Thickness * System.Windows.Media.Animation.KeyTime * System.Windows.Media.Animation.IEasingFunction -> System.Windows.Media.Animation.EasingThicknessKeyFrame
Public Sub New (value As Thickness, keyTime As KeyTime, easingFunction As IEasingFunction)
Parameters
- keyTime
- KeyTime
The initial key time.
- easingFunction
- IEasingFunction
The easing function.