9 writes to Value
PresentationCore (9)
Core\CSharp\System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (3)
1429Value = value; 1438Value = value; 1448Value = value;
Core\CSharp\System\Windows\Media\Animation\Generated\KeyFrames.cs (3)
2211Value = value; 2220Value = value; 2275Value = (Rect)value;
Core\CSharp\System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (3)
1517Value = value; 1526Value = value; 1541Value = value;
12 references to Value
PresentationCore (12)
Core\CSharp\System\Windows\Media\Animation\Generated\DiscreteKeyFrames.cs (1)
1236return Value;
Core\CSharp\System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (2)
1488return Value; 1492return AnimatedTypeHelpers.InterpolateRect(baseValue, Value, keyFrameProgress);
Core\CSharp\System\Windows\Media\Animation\Generated\KeyFrames.cs (1)
2271return Value;
Core\CSharp\System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (2)
940return Value; 944return AnimatedTypeHelpers.InterpolateRect(baseValue, Value, keyFrameProgress);
Core\CSharp\System\Windows\Media\Animation\Generated\RectAnimationUsingKeyFrames.cs (4)
647return GetResolvedKeyFrame(resolvedKeyFrameIndex).Value; 954Rect prevKeyValue = _keyFrames[index - 1].Value; 958Rect currentKeyValue = _keyFrames[index].Value; 985totalLength += AnimatedTypeHelpers.GetSegmentLengthRect(prevKeyValue, _keyFrames[index].Value);
Core\CSharp\System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (2)
1575return Value; 1581return AnimatedTypeHelpers.InterpolateRect(baseValue, Value, splineProgress);