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