9 writes to Value
PresentationCore (9)
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (3)
1920Value = value; 1929Value = value; 1939Value = value;
System\Windows\Media\Animation\Generated\KeyFrames.cs (3)
2860Value = value; 2869Value = value; 2924Value = (Vector3D)value;
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (3)
1955Value = value; 1964Value = value; 1976Value = value;
12 references to Value
PresentationCore (12)
System\Windows\Media\Animation\Generated\DiscreteKeyFrames.cs (1)
1605return Value;
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (2)
1979return Value; 1983return AnimatedTypeHelpers.InterpolateVector3D(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\KeyFrames.cs (1)
2920return Value;
System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (2)
1239return Value; 1243return AnimatedTypeHelpers.InterpolateVector3D(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (2)
2010return Value; 2016return AnimatedTypeHelpers.InterpolateVector3D(baseValue, Value, splineProgress);
System\Windows\Media\Animation\Generated\Vector3DAnimationUsingKeyFrames.cs (4)
625return GetResolvedKeyFrame(resolvedKeyFrameIndex).Value; 934Vector3D prevKeyValue = _keyFrames[index - 1].Value; 938Vector3D currentKeyValue = _keyFrames[index].Value; 965totalLength += AnimatedTypeHelpers.GetSegmentLengthVector3D(prevKeyValue, _keyFrames[index].Value);