9 writes to Value
PresentationCore (9)
Core\CSharp\System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (3)
1929
Value
= value;
1938
Value
= value;
1948
Value
= value;
Core\CSharp\System\Windows\Media\Animation\Generated\KeyFrames.cs (3)
2931
Value
= value;
2940
Value
= value;
2995
Value
= (Vector3D)value;
Core\CSharp\System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (3)
2049
Value
= value;
2058
Value
= value;
2073
Value
= value;
12 references to Value
PresentationCore (12)
Core\CSharp\System\Windows\Media\Animation\Generated\DiscreteKeyFrames.cs (1)
1616
return
Value
;
Core\CSharp\System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (2)
1988
return
Value
;
1992
return AnimatedTypeHelpers.InterpolateVector3D(baseValue,
Value
, keyFrameProgress);
Core\CSharp\System\Windows\Media\Animation\Generated\KeyFrames.cs (1)
2991
return
Value
;
Core\CSharp\System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (2)
1248
return
Value
;
1252
return AnimatedTypeHelpers.InterpolateVector3D(baseValue,
Value
, keyFrameProgress);
Core\CSharp\System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (2)
2107
return
Value
;
2113
return AnimatedTypeHelpers.InterpolateVector3D(baseValue,
Value
, splineProgress);
Core\CSharp\System\Windows\Media\Animation\Generated\Vector3DAnimationUsingKeyFrames.cs (4)
647
return GetResolvedKeyFrame(resolvedKeyFrameIndex).
Value
;
954
Vector3D prevKeyValue = _keyFrames[index - 1].
Value
;
958
Vector3D currentKeyValue = _keyFrames[index].
Value
;
985
totalLength += AnimatedTypeHelpers.GetSegmentLengthVector3D(prevKeyValue, _keyFrames[index].
Value
);