言語

RectAnimation コンストラクター

定義

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

オーバーロード

名前 説明
RectAnimation()

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

RectAnimation(Rect, Duration)

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

RectAnimation(Rect, Duration, FillBehavior)

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

RectAnimation(Rect, Rect, Duration)

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

RectAnimation(Rect, Rect, Duration, FillBehavior)

指定した開始値から指定した変換先の値まで、指定した期間にわたってアニメーション化し、指定した塗りつぶし動作を持つ、 RectAnimation クラスの新しいインスタンスを初期化します。

RectAnimation()

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

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

適用対象

RectAnimation(Rect, Duration)

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

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

パラメーター

toValue
Rect

アニメーションの変換先の値。

duration
Duration

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

適用対象

RectAnimation(Rect, Duration, FillBehavior)

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

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

パラメーター

toValue
Rect

アニメーションの変換先の値。

duration
Duration

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

fillBehavior
FillBehavior

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

適用対象

RectAnimation(Rect, Rect, Duration)

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

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

パラメーター

fromValue
Rect

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

toValue
Rect

アニメーションの変換先の値。

duration
Duration

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

適用対象

RectAnimation(Rect, Rect, Duration, FillBehavior)

指定した開始値から指定した変換先の値まで、指定した期間にわたってアニメーション化し、指定した塗りつぶし動作を持つ、 RectAnimation クラスの新しいインスタンスを初期化します。

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

パラメーター

fromValue
Rect

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

toValue
Rect

アニメーションの変換先の値。

duration
Duration

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

fillBehavior
FillBehavior

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

適用対象