9 writes to Value
PresentationCore (9)
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (3)
1044Value = value; 1053Value = value; 1063Value = value;
System\Windows\Media\Animation\Generated\KeyFrames.cs (3)
1731Value = value; 1740Value = value; 1795Value = (Point3D)value;
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (3)
1060Value = value; 1069Value = value; 1081Value = value;
12 references to Value
PresentationCore (12)
System\Windows\Media\Animation\Generated\DiscreteKeyFrames.cs (1)
996return Value;
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (2)
1103return Value; 1107return AnimatedTypeHelpers.InterpolatePoint3D(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\KeyFrames.cs (1)
1791return Value;
System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (2)
699return Value; 703return AnimatedTypeHelpers.InterpolatePoint3D(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\Point3DAnimationUsingKeyFrames.cs (4)
622return GetResolvedKeyFrame(resolvedKeyFrameIndex).Value; 931Point3D prevKeyValue = _keyFrames[index - 1].Value; 935Point3D currentKeyValue = _keyFrames[index].Value; 962totalLength += AnimatedTypeHelpers.GetSegmentLengthPoint3D(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (2)
1115return Value; 1121return AnimatedTypeHelpers.InterpolatePoint3D(baseValue, Value, splineProgress);