LinearColorKeyFrame Constructors

Definition

Initializes a new instance of the LinearColorKeyFrame class.

Overloads

LinearColorKeyFrame()

Initializes a new instance of the LinearColorKeyFrame class.

LinearColorKeyFrame(Color)

Initializes a new instance of the LinearColorKeyFrame class with the specified ending value.

LinearColorKeyFrame(Color, KeyTime)

Initializes a new instance of the LinearColorKeyFrame class with the specified ending value and key time.

LinearColorKeyFrame()

Initializes a new instance of the LinearColorKeyFrame class.

public:
 LinearColorKeyFrame();
public LinearColorKeyFrame ();
Public Sub New ()

Applies to

LinearColorKeyFrame(Color)

Initializes a new instance of the LinearColorKeyFrame class with the specified ending value.

public:
 LinearColorKeyFrame(System::Windows::Media::Color value);
public LinearColorKeyFrame (System.Windows.Media.Color value);
new System.Windows.Media.Animation.LinearColorKeyFrame : System.Windows.Media.Color -> System.Windows.Media.Animation.LinearColorKeyFrame
Public Sub New (value As Color)

Parameters

value
Color

Ending value (also known as "target value") for the key frame.

Applies to

LinearColorKeyFrame(Color, KeyTime)

Initializes a new instance of the LinearColorKeyFrame class with the specified ending value and key time.

public:
 LinearColorKeyFrame(System::Windows::Media::Color value, System::Windows::Media::Animation::KeyTime keyTime);
public LinearColorKeyFrame (System.Windows.Media.Color value, System.Windows.Media.Animation.KeyTime keyTime);
new System.Windows.Media.Animation.LinearColorKeyFrame : System.Windows.Media.Color * System.Windows.Media.Animation.KeyTime -> System.Windows.Media.Animation.LinearColorKeyFrame
Public Sub New (value As Color, keyTime As KeyTime)

Parameters

value
Color

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.

Applies to