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