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