9 writes to Value
PresentationCore (9)
Core\CSharp\System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (3)
1929Value = value; 1938Value = value; 1948Value = value;
Core\CSharp\System\Windows\Media\Animation\Generated\KeyFrames.cs (3)
2931Value = value; 2940Value = value; 2995Value = (Vector3D)value;
Core\CSharp\System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (3)
2049Value = value; 2058Value = value; 2073Value = value;
12 references to Value
PresentationCore (12)
Core\CSharp\System\Windows\Media\Animation\Generated\DiscreteKeyFrames.cs (1)
1616return Value;
Core\CSharp\System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (2)
1988return Value; 1992return AnimatedTypeHelpers.InterpolateVector3D(baseValue, Value, keyFrameProgress);
Core\CSharp\System\Windows\Media\Animation\Generated\KeyFrames.cs (1)
2991return Value;
Core\CSharp\System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (2)
1248return Value; 1252return AnimatedTypeHelpers.InterpolateVector3D(baseValue, Value, keyFrameProgress);
Core\CSharp\System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (2)
2107return Value; 2113return AnimatedTypeHelpers.InterpolateVector3D(baseValue, Value, splineProgress);
Core\CSharp\System\Windows\Media\Animation\Generated\Vector3DAnimationUsingKeyFrames.cs (4)
647return GetResolvedKeyFrame(resolvedKeyFrameIndex).Value; 954Vector3D prevKeyValue = _keyFrames[index - 1].Value; 958Vector3D currentKeyValue = _keyFrames[index].Value; 985totalLength += AnimatedTypeHelpers.GetSegmentLengthVector3D(prevKeyValue, _keyFrames[index].Value);