VectorAnimationBase.GetCurrentValueCore メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ホスト アニメーションによって決定されたように、アニメーション化されているプロパティの現在の値を表す値を計算します。
protected:
abstract System::Windows::Vector GetCurrentValueCore(System::Windows::Vector defaultOriginValue, System::Windows::Vector defaultDestinationValue, System::Windows::Media::Animation::AnimationClock ^ animationClock);
protected abstract System.Windows.Vector GetCurrentValueCore (System.Windows.Vector defaultOriginValue, System.Windows.Vector defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock);
abstract member GetCurrentValueCore : System.Windows.Vector * System.Windows.Vector * System.Windows.Media.Animation.AnimationClock -> System.Windows.Vector
Protected MustOverride Function GetCurrentValueCore (defaultOriginValue As Vector, defaultDestinationValue As Vector, animationClock As AnimationClock) As Vector
パラメーター
- defaultOriginValue
- Vector
アニメーションに独自の明示的な開始値が設定されていない場合に使用される、元の推奨値。
- defaultDestinationValue
- Vector
アニメーションが独自の明示的な終了値を持たない場合に使用される、終点の推奨値。
- animationClock
- AnimationClock
ホスト アニメーションで使用される CurrentTime または CurrentProgress を生成する AnimationClock。
戻り値
現在のアニメーションで決定されたように計算されたプロパティ値。
注釈
パラメーターの値は、 defaultOriginValue コンポジション チェーン内でのアニメーションの位置によって異なります。
アニメーションがコンポジション チェーンの最初の位置にあり、別のアニメーションを置き換える場合は、
defaultOriginValueアニメーションが置き換えられた時点でそのアニメーションの出力になります。アニメーションがコンポジション チェーンの最初の位置にあり、置き換えるアニメーションが存在しない場合は、
defaultOriginValueアニメーション化されたプロパティの基本値になります。このアニメーションがコンポジション チェーンの最初の位置にない場合は、
defaultOriginValueコンポジション チェーン AnimationClock 内の前のアニメーションによって返される値で、それ以外 Stoppedの値が含まれます。
パラメーターの値は、前の defaultDestinationValue プロパティ Trigger コンポジション レイヤーがあるかどうかによって異なります。
前のプロパティ Trigger コンポジションレイヤーがある場合は、
defaultDestinationValueそのレイヤーからの出力です。前のコンポジション レイヤーがない場合は、
defaultDestinationValueアニメーション化するプロパティの基本値です。
アニメーションの構成の詳細については、「 アニメーションとタイミング システムの概要」を参照してください。 カスタム アニメーションの種類の作成の詳細については、「 カスタム アニメーションの概要」を参照してください。