DiscreteBooleanKeyFrame 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 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.