PointAnimation コンストラクター

定義

PointAnimation クラスの新しいインスタンスを初期化します。

オーバーロード

PointAnimation()

PointAnimation クラスの新しいインスタンスを初期化します。

PointAnimation(Point, Duration)

指定された期間にわたって指定された値にアニメーションを付ける、PointAnimation クラスの新しいインスタンスを初期化します。 アニメーションの開始値は、アニメーションを付けるプロパティの基準値か、別のアニメーションからの出力になります。

PointAnimation(Point, Duration, FillBehavior)

指定された期間にわたって指定された値までアニメーションを付け、指定された塗りつぶし動作がある、PointAnimation クラスの新しいインスタンスを初期化します。 アニメーションの開始値は、アニメーションを付けるプロパティの基準値か、別のアニメーションからの出力になります。

PointAnimation(Point, Point, Duration)

指定した開始値から指定した宛先値まで、指定された期間にわたってアニメーションを付ける、PointAnimation クラスの新しいインスタンスを初期化します。

PointAnimation(Point, Point, Duration, FillBehavior)

指定した開始値から指定した宛先値まで、指定された期間にわたってアニメーションを付け、指定された塗りつぶし動作がある、PointAnimation クラスの新しいインスタンスを初期化します。

PointAnimation()

PointAnimation クラスの新しいインスタンスを初期化します。

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

適用対象

PointAnimation(Point, Duration)

指定された期間にわたって指定された値にアニメーションを付ける、PointAnimation クラスの新しいインスタンスを初期化します。 アニメーションの開始値は、アニメーションを付けるプロパティの基準値か、別のアニメーションからの出力になります。

public:
 PointAnimation(System::Windows::Point toValue, System::Windows::Duration duration);
public PointAnimation (System.Windows.Point toValue, System.Windows.Duration duration);
new System.Windows.Media.Animation.PointAnimation : System.Windows.Point * System.Windows.Duration -> System.Windows.Media.Animation.PointAnimation
Public Sub New (toValue As Point, duration As Duration)

パラメーター

toValue
Point

アニメーションの宛先値。

duration
Duration

アニメーションが最初から最後まで 1 回再生されるのにかかる時間の長さ。 詳細については、Duration プロパティをご覧ください。

適用対象

PointAnimation(Point, Duration, FillBehavior)

指定された期間にわたって指定された値までアニメーションを付け、指定された塗りつぶし動作がある、PointAnimation クラスの新しいインスタンスを初期化します。 アニメーションの開始値は、アニメーションを付けるプロパティの基準値か、別のアニメーションからの出力になります。

public:
 PointAnimation(System::Windows::Point toValue, System::Windows::Duration duration, System::Windows::Media::Animation::FillBehavior fillBehavior);
public PointAnimation (System.Windows.Point toValue, System.Windows.Duration duration, System.Windows.Media.Animation.FillBehavior fillBehavior);
new System.Windows.Media.Animation.PointAnimation : System.Windows.Point * System.Windows.Duration * System.Windows.Media.Animation.FillBehavior -> System.Windows.Media.Animation.PointAnimation
Public Sub New (toValue As Point, duration As Duration, fillBehavior As FillBehavior)

パラメーター

toValue
Point

アニメーションの宛先値。

duration
Duration

アニメーションが最初から最後まで 1 回再生されるのにかかる時間の長さ。 詳細については、Duration プロパティをご覧ください。

fillBehavior
FillBehavior

アクティブでないときのアニメーションの動作を指定します。

適用対象

PointAnimation(Point, Point, Duration)

指定した開始値から指定した宛先値まで、指定された期間にわたってアニメーションを付ける、PointAnimation クラスの新しいインスタンスを初期化します。

public:
 PointAnimation(System::Windows::Point fromValue, System::Windows::Point toValue, System::Windows::Duration duration);
public PointAnimation (System.Windows.Point fromValue, System.Windows.Point toValue, System.Windows.Duration duration);
new System.Windows.Media.Animation.PointAnimation : System.Windows.Point * System.Windows.Point * System.Windows.Duration -> System.Windows.Media.Animation.PointAnimation
Public Sub New (fromValue As Point, toValue As Point, duration As Duration)

パラメーター

fromValue
Point

アニメーションの開始の値。

toValue
Point

アニメーションの宛先値。

duration
Duration

アニメーションが最初から最後まで 1 回再生されるのにかかる時間の長さ。 詳細については、Duration プロパティをご覧ください。

適用対象

PointAnimation(Point, Point, Duration, FillBehavior)

指定した開始値から指定した宛先値まで、指定された期間にわたってアニメーションを付け、指定された塗りつぶし動作がある、PointAnimation クラスの新しいインスタンスを初期化します。

public:
 PointAnimation(System::Windows::Point fromValue, System::Windows::Point toValue, System::Windows::Duration duration, System::Windows::Media::Animation::FillBehavior fillBehavior);
public PointAnimation (System.Windows.Point fromValue, System.Windows.Point toValue, System.Windows.Duration duration, System.Windows.Media.Animation.FillBehavior fillBehavior);
new System.Windows.Media.Animation.PointAnimation : System.Windows.Point * System.Windows.Point * System.Windows.Duration * System.Windows.Media.Animation.FillBehavior -> System.Windows.Media.Animation.PointAnimation
Public Sub New (fromValue As Point, toValue As Point, duration As Duration, fillBehavior As FillBehavior)

パラメーター

fromValue
Point

アニメーションの開始の値。

toValue
Point

アニメーションの宛先値。

duration
Duration

アニメーションが最初から最後まで 1 回再生されるのにかかる時間の長さ。 詳細については、Duration プロパティをご覧ください。

fillBehavior
FillBehavior

アクティブでないときのアニメーションの動作を指定します。

適用対象