LinearDoubleKeyFrame 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 LinearDoubleKeyFrame class.
Overloads
LinearDoubleKeyFrame() |
Initializes a new instance of the LinearDoubleKeyFrame class. |
LinearDoubleKeyFrame(Double) |
Initializes a new instance of the LinearDoubleKeyFrame class with the specified ending value. |
LinearDoubleKeyFrame(Double, KeyTime) |
Initializes a new instance of the LinearDoubleKeyFrame class with the specified ending value and key time. |
LinearDoubleKeyFrame()
Initializes a new instance of the LinearDoubleKeyFrame class.
public:
LinearDoubleKeyFrame();
public LinearDoubleKeyFrame ();
Public Sub New ()
Applies to
LinearDoubleKeyFrame(Double)
Initializes a new instance of the LinearDoubleKeyFrame class with the specified ending value.
public:
LinearDoubleKeyFrame(double value);
public LinearDoubleKeyFrame (double value);
new System.Windows.Media.Animation.LinearDoubleKeyFrame : double -> System.Windows.Media.Animation.LinearDoubleKeyFrame
Public Sub New (value As Double)
Parameters
- value
- Double
Ending value (also known as "target value") for the key frame.
Applies to
LinearDoubleKeyFrame(Double, KeyTime)
Initializes a new instance of the LinearDoubleKeyFrame class with the specified ending value and key time.
public:
LinearDoubleKeyFrame(double value, System::Windows::Media::Animation::KeyTime keyTime);
public LinearDoubleKeyFrame (double value, System.Windows.Media.Animation.KeyTime keyTime);
new System.Windows.Media.Animation.LinearDoubleKeyFrame : double * System.Windows.Media.Animation.KeyTime -> System.Windows.Media.Animation.LinearDoubleKeyFrame
Public Sub New (value As Double, keyTime As KeyTime)
Parameters
- value
- Double
Ending value (also known as "target value") for the key frame.
- keyTime
- KeyTime
Key time for the key frame. The key time determines when the target value is reached which is also when the key frame ends.