EasingColorKeyFrame 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.
Overloads
EasingColorKeyFrame() |
Initializes a new instance of the EasingColorKeyFrame class. |
EasingColorKeyFrame(Color) |
Initializes a new instance of the EasingColorKeyFrame class with the specified Color. |
EasingColorKeyFrame(Color, KeyTime) |
Initializes a new instance of the EasingColorKeyFrame class with the specified Color and key time. |
EasingColorKeyFrame(Color, KeyTime, IEasingFunction) |
Initializes a new instance of the EasingColorKeyFrame class with the specified Color, key time, and easing function. |
EasingColorKeyFrame()
Initializes a new instance of the EasingColorKeyFrame class.
public:
EasingColorKeyFrame();
public EasingColorKeyFrame ();
Public Sub New ()
See also
Applies to
EasingColorKeyFrame(Color)
Initializes a new instance of the EasingColorKeyFrame class with the specified Color.
public:
EasingColorKeyFrame(System::Windows::Media::Color value);
public EasingColorKeyFrame (System.Windows.Media.Color value);
new System.Windows.Media.Animation.EasingColorKeyFrame : System.Windows.Media.Color -> System.Windows.Media.Animation.EasingColorKeyFrame
Public Sub New (value As Color)
Parameters
See also
Applies to
EasingColorKeyFrame(Color, KeyTime)
Initializes a new instance of the EasingColorKeyFrame class with the specified Color and key time.
public:
EasingColorKeyFrame(System::Windows::Media::Color value, System::Windows::Media::Animation::KeyTime keyTime);
public EasingColorKeyFrame (System.Windows.Media.Color value, System.Windows.Media.Animation.KeyTime keyTime);
new System.Windows.Media.Animation.EasingColorKeyFrame : System.Windows.Media.Color * System.Windows.Media.Animation.KeyTime -> System.Windows.Media.Animation.EasingColorKeyFrame
Public Sub New (value As Color, keyTime As KeyTime)
Parameters
- keyTime
- KeyTime
The initial key time.
Applies to
EasingColorKeyFrame(Color, KeyTime, IEasingFunction)
Initializes a new instance of the EasingColorKeyFrame class with the specified Color, key time, and easing function.
public:
EasingColorKeyFrame(System::Windows::Media::Color value, System::Windows::Media::Animation::KeyTime keyTime, System::Windows::Media::Animation::IEasingFunction ^ easingFunction);
public EasingColorKeyFrame (System.Windows.Media.Color value, System.Windows.Media.Animation.KeyTime keyTime, System.Windows.Media.Animation.IEasingFunction easingFunction);
new System.Windows.Media.Animation.EasingColorKeyFrame : System.Windows.Media.Color * System.Windows.Media.Animation.KeyTime * System.Windows.Media.Animation.IEasingFunction -> System.Windows.Media.Animation.EasingColorKeyFrame
Public Sub New (value As Color, keyTime As KeyTime, easingFunction As IEasingFunction)
Parameters
- keyTime
- KeyTime
The initial key time.
- easingFunction
- IEasingFunction
The easing function.
See also
Applies to
.NET