9 writes to Value
PresentationCore (9)
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (3)
1795Value = value; 1804Value = value; 1814Value = value;
System\Windows\Media\Animation\Generated\KeyFrames.cs (3)
2719Value = value; 2728Value = value; 2783Value = (Vector)value;
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (3)
1828Value = value; 1837Value = value; 1849Value = value;
12 references to Value
PresentationCore (12)
System\Windows\Media\Animation\Generated\DiscreteKeyFrames.cs (1)
1529return Value;
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (2)
1854return Value; 1858return AnimatedTypeHelpers.InterpolateVector(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\KeyFrames.cs (1)
2779return Value;
System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (2)
1162return Value; 1166return AnimatedTypeHelpers.InterpolateVector(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (2)
1883return Value; 1889return AnimatedTypeHelpers.InterpolateVector(baseValue, Value, splineProgress);
System\Windows\Media\Animation\Generated\VectorAnimationUsingKeyFrames.cs (4)
625return GetResolvedKeyFrame(resolvedKeyFrameIndex).Value; 934Vector prevKeyValue = _keyFrames[index - 1].Value; 938Vector currentKeyValue = _keyFrames[index].Value; 965totalLength += AnimatedTypeHelpers.GetSegmentLengthVector(prevKeyValue, _keyFrames[index].Value);