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