9 writes to Value
PresentationCore (9)
Core\CSharp\System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (3)
1804
Value
= value;
1813
Value
= value;
1823
Value
= value;
Core\CSharp\System\Windows\Media\Animation\Generated\KeyFrames.cs (3)
2787
Value
= value;
2796
Value
= value;
2851
Value
= (Vector)value;
Core\CSharp\System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (3)
1916
Value
= value;
1925
Value
= value;
1940
Value
= value;
12 references to Value
PresentationCore (12)
Core\CSharp\System\Windows\Media\Animation\Generated\DiscreteKeyFrames.cs (1)
1540
return
Value
;
Core\CSharp\System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (2)
1863
return
Value
;
1867
return AnimatedTypeHelpers.InterpolateVector(baseValue,
Value
, keyFrameProgress);
Core\CSharp\System\Windows\Media\Animation\Generated\KeyFrames.cs (1)
2847
return
Value
;
Core\CSharp\System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (2)
1171
return
Value
;
1175
return AnimatedTypeHelpers.InterpolateVector(baseValue,
Value
, keyFrameProgress);
Core\CSharp\System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (2)
1974
return
Value
;
1980
return AnimatedTypeHelpers.InterpolateVector(baseValue,
Value
, splineProgress);
Core\CSharp\System\Windows\Media\Animation\Generated\VectorAnimationUsingKeyFrames.cs (4)
647
return GetResolvedKeyFrame(resolvedKeyFrameIndex).
Value
;
954
Vector prevKeyValue = _keyFrames[index - 1].
Value
;
958
Vector currentKeyValue = _keyFrames[index].
Value
;
985
totalLength += AnimatedTypeHelpers.GetSegmentLengthVector(prevKeyValue, _keyFrames[index].
Value
);