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