9 writes to Value
PresentationCore (9)
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (3)
1794Value = value; 1803Value = value; 1813Value = value;
System\Windows\Media\Animation\Generated\KeyFrames.cs (3)
2718Value = value; 2727Value = value; 2782Value = (Vector)value;
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (3)
1822Value = value; 1831Value = value; 1843Value = value;
12 references to Value
PresentationCore (12)
System\Windows\Media\Animation\Generated\DiscreteKeyFrames.cs (1)
1528return Value;
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (2)
1853return Value; 1857return AnimatedTypeHelpers.InterpolateVector(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\KeyFrames.cs (1)
2778return Value;
System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (2)
1161return Value; 1165return AnimatedTypeHelpers.InterpolateVector(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (2)
1877return Value; 1883return AnimatedTypeHelpers.InterpolateVector(baseValue, Value, splineProgress);
System\Windows\Media\Animation\Generated\VectorAnimationUsingKeyFrames.cs (4)
621return GetResolvedKeyFrame(resolvedKeyFrameIndex).Value; 930Vector prevKeyValue = _keyFrames[index - 1].Value; 934Vector currentKeyValue = _keyFrames[index].Value; 961totalLength += AnimatedTypeHelpers.GetSegmentLengthVector(prevKeyValue, _keyFrames[index].Value);