9 writes to Value
PresentationCore (9)
Core\CSharp\System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (3)
929Value = value; 938Value = value; 948Value = value;
Core\CSharp\System\Windows\Media\Animation\Generated\KeyFrames.cs (3)
1635Value = value; 1644Value = value; 1699Value = (Point)value;
Core\CSharp\System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (3)
985Value = value; 994Value = value; 1009Value = value;
13 references to Value
PresentationCore (12)
Core\CSharp\System\Windows\Media\Animation\Generated\DiscreteKeyFrames.cs (1)
932return Value;
Core\CSharp\System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (2)
988return Value; 992return AnimatedTypeHelpers.InterpolatePoint(baseValue, Value, keyFrameProgress);
Core\CSharp\System\Windows\Media\Animation\Generated\KeyFrames.cs (1)
1695return Value;
Core\CSharp\System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (2)
632return Value; 636return AnimatedTypeHelpers.InterpolatePoint(baseValue, Value, keyFrameProgress);
Core\CSharp\System\Windows\Media\Animation\Generated\PointAnimationUsingKeyFrames.cs (4)
647return GetResolvedKeyFrame(resolvedKeyFrameIndex).Value; 954Point prevKeyValue = _keyFrames[index - 1].Value; 958Point currentKeyValue = _keyFrames[index].Value; 985totalLength += AnimatedTypeHelpers.GetSegmentLengthPoint(prevKeyValue, _keyFrames[index].Value);
Core\CSharp\System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (2)
1043return Value; 1049return AnimatedTypeHelpers.InterpolatePoint(baseValue, Value, splineProgress);
PresentationFramework (1)
src\Framework\System\Windows\VisualStateManager.cs (1)
715return keyFrame.Value;