9 writes to Value
PresentationCore (9)
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (3)
1919Value = value; 1928Value = value; 1938Value = value;
System\Windows\Media\Animation\Generated\KeyFrames.cs (3)
2859Value = value; 2868Value = value; 2923Value = (Vector3D)value;
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (3)
1949Value = value; 1958Value = value; 1970Value = value;
12 references to Value
PresentationCore (12)
System\Windows\Media\Animation\Generated\DiscreteKeyFrames.cs (1)
1604return Value;
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (2)
1978return Value; 1982return AnimatedTypeHelpers.InterpolateVector3D(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\KeyFrames.cs (1)
2919return Value;
System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (2)
1238return Value; 1242return AnimatedTypeHelpers.InterpolateVector3D(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (2)
2004return Value; 2010return AnimatedTypeHelpers.InterpolateVector3D(baseValue, Value, splineProgress);
System\Windows\Media\Animation\Generated\Vector3DAnimationUsingKeyFrames.cs (4)
622return GetResolvedKeyFrame(resolvedKeyFrameIndex).Value; 931Vector3D prevKeyValue = _keyFrames[index - 1].Value; 935Vector3D currentKeyValue = _keyFrames[index].Value; 962totalLength += AnimatedTypeHelpers.GetSegmentLengthVector3D(prevKeyValue, _keyFrames[index].Value);