DiscreteBooleanKeyFrame Constructors

Definition

Initializes a new instance of the DiscreteBooleanKeyFrame class.

Overloads

DiscreteBooleanKeyFrame()

Initializes a new instance of the DiscreteBooleanKeyFrame class.

DiscreteBooleanKeyFrame(Boolean)

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

DiscreteBooleanKeyFrame(Boolean, KeyTime)

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

DiscreteBooleanKeyFrame()

Initializes a new instance of the DiscreteBooleanKeyFrame class.

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

Applies to

DiscreteBooleanKeyFrame(Boolean)

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

public:
 DiscreteBooleanKeyFrame(bool value);
public DiscreteBooleanKeyFrame (bool value);
new System.Windows.Media.Animation.DiscreteBooleanKeyFrame : bool -> System.Windows.Media.Animation.DiscreteBooleanKeyFrame
Public Sub New (value As Boolean)

Parameters

value
Boolean

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

Applies to

DiscreteBooleanKeyFrame(Boolean, KeyTime)

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

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

Parameters

value
Boolean

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