9 writes to Value
PresentationCore (9)
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (3)
1545Value = value; 1554Value = value; 1564Value = value;
System\Windows\Media\Animation\Generated\KeyFrames.cs (3)
2296Value = value; 2305Value = value; 2360Value = (Single)value;
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (3)
1574Value = value; 1583Value = value; 1595Value = value;
12 references to Value
PresentationCore (12)
System\Windows\Media\Animation\Generated\DiscreteKeyFrames.cs (1)
1301return Value;
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (2)
1604return Value; 1608return AnimatedTypeHelpers.InterpolateSingle(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\KeyFrames.cs (1)
2356return Value;
System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (2)
1008return Value; 1012return AnimatedTypeHelpers.InterpolateSingle(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\SingleAnimationUsingKeyFrames.cs (4)
625return GetResolvedKeyFrame(resolvedKeyFrameIndex).Value; 934Single prevKeyValue = _keyFrames[index - 1].Value; 938Single currentKeyValue = _keyFrames[index].Value; 965totalLength += AnimatedTypeHelpers.GetSegmentLengthSingle(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (2)
1629return Value; 1635return AnimatedTypeHelpers.InterpolateSingle(baseValue, Value, splineProgress);