LinearPoint3DKeyFrame 构造函数

定义

初始化 LinearPoint3DKeyFrame 类的新实例。

重载

LinearPoint3DKeyFrame()

初始化 LinearPoint3DKeyFrame 类的新实例。

LinearPoint3DKeyFrame(Point3D)

使用指定的结束值初始化 LinearPoint3DKeyFrame 类的新实例。

LinearPoint3DKeyFrame(Point3D, KeyTime)

使用指定的结束值和关键时间初始化 LinearPoint3DKeyFrame 类的新实例。

LinearPoint3DKeyFrame()

初始化 LinearPoint3DKeyFrame 类的新实例。

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

适用于

LinearPoint3DKeyFrame(Point3D)

使用指定的结束值初始化 LinearPoint3DKeyFrame 类的新实例。

public:
 LinearPoint3DKeyFrame(System::Windows::Media::Media3D::Point3D value);
public LinearPoint3DKeyFrame (System.Windows.Media.Media3D.Point3D value);
new System.Windows.Media.Animation.LinearPoint3DKeyFrame : System.Windows.Media.Media3D.Point3D -> System.Windows.Media.Animation.LinearPoint3DKeyFrame
Public Sub New (value As Point3D)

参数

value
Point3D

关键帧的结束值(也称为“目标值”)。

适用于

LinearPoint3DKeyFrame(Point3D, KeyTime)

使用指定的结束值和关键时间初始化 LinearPoint3DKeyFrame 类的新实例。

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

参数

value
Point3D

关键帧的结束值(也称为“目标值”)。

keyTime
KeyTime

关键帧的关键时间。 关键时间确定达到目标值的时间,同时也是关键帧结束的时间。

适用于