9 writes to Value
PresentationCore (9)
Core\CSharp\System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (3)
1054Value = value; 1063Value = value; 1073Value = value;
Core\CSharp\System\Windows\Media\Animation\Generated\KeyFrames.cs (3)
1779Value = value; 1788Value = value; 1843Value = (Point3D)value;
Core\CSharp\System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (3)
1118Value = value; 1127Value = value; 1142Value = value;
12 references to Value
PresentationCore (12)
Core\CSharp\System\Windows\Media\Animation\Generated\DiscreteKeyFrames.cs (1)
1008return Value;
Core\CSharp\System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (2)
1113return Value; 1117return AnimatedTypeHelpers.InterpolatePoint3D(baseValue, Value, keyFrameProgress);
Core\CSharp\System\Windows\Media\Animation\Generated\KeyFrames.cs (1)
1839return Value;
Core\CSharp\System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (2)
709return Value; 713return AnimatedTypeHelpers.InterpolatePoint3D(baseValue, Value, keyFrameProgress);
Core\CSharp\System\Windows\Media\Animation\Generated\Point3DAnimationUsingKeyFrames.cs (4)
647return GetResolvedKeyFrame(resolvedKeyFrameIndex).Value; 954Point3D prevKeyValue = _keyFrames[index - 1].Value; 958Point3D currentKeyValue = _keyFrames[index].Value; 985totalLength += AnimatedTypeHelpers.GetSegmentLengthPoint3D(prevKeyValue, _keyFrames[index].Value);
Core\CSharp\System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (2)
1176return Value; 1182return AnimatedTypeHelpers.InterpolatePoint3D(baseValue, Value, splineProgress);