ColorKeyFrame 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 ColorKeyFrame class.
Overloads
ColorKeyFrame() |
Initializes a new instance of the ColorKeyFrame class. |
ColorKeyFrame(Color) |
Initializes a new instance of the ColorKeyFrame class that has the specified target Value. |
ColorKeyFrame(Color, KeyTime) |
Initializes a new instance of the ColorKeyFrame class that has the specified target Value and KeyTime. |
ColorKeyFrame()
Initializes a new instance of the ColorKeyFrame class.
protected:
ColorKeyFrame();
protected ColorKeyFrame ();
Protected Sub New ()
Applies to
ColorKeyFrame(Color)
Initializes a new instance of the ColorKeyFrame class that has the specified target Value.
protected:
ColorKeyFrame(System::Windows::Media::Color value);
protected ColorKeyFrame (System.Windows.Media.Color value);
new System.Windows.Media.Animation.ColorKeyFrame : System.Windows.Media.Color -> System.Windows.Media.Animation.ColorKeyFrame
Protected Sub New (value As Color)
Parameters
- value
- Color
The Value of the new ColorKeyFrame instance.
Applies to
ColorKeyFrame(Color, KeyTime)
Initializes a new instance of the ColorKeyFrame class that has the specified target Value and KeyTime.
protected:
ColorKeyFrame(System::Windows::Media::Color value, System::Windows::Media::Animation::KeyTime keyTime);
protected ColorKeyFrame (System.Windows.Media.Color value, System.Windows.Media.Animation.KeyTime keyTime);
new System.Windows.Media.Animation.ColorKeyFrame : System.Windows.Media.Color * System.Windows.Media.Animation.KeyTime -> System.Windows.Media.Animation.ColorKeyFrame
Protected Sub New (value As Color, keyTime As KeyTime)
Parameters
- value
- Color
The Value of the new ColorKeyFrame instance.
- keyTime
- KeyTime
The KeyTime of the new ColorKeyFrame instance.