9 writes to Value
PresentationCore (9)
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (3)
669Value = value; 678Value = value; 688Value = value;
System\Windows\Media\Animation\Generated\KeyFrames.cs (3)
1026Value = value; 1035Value = value; 1090Value = (Int32)value;
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (3)
679Value = value; 688Value = value; 700Value = value;
12 references to Value
PresentationCore (12)
System\Windows\Media\Animation\Generated\DiscreteKeyFrames.cs (1)
616return Value;
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (2)
728return Value; 732return AnimatedTypeHelpers.InterpolateInt32(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\Int32AnimationUsingKeyFrames.cs (4)
621return GetResolvedKeyFrame(resolvedKeyFrameIndex).Value; 930Int32 prevKeyValue = _keyFrames[index - 1].Value; 934Int32 currentKeyValue = _keyFrames[index].Value; 961totalLength += AnimatedTypeHelpers.GetSegmentLengthInt32(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\KeyFrames.cs (1)
1086return Value;
System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (2)
468return Value; 472return AnimatedTypeHelpers.InterpolateInt32(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (2)
734return Value; 740return AnimatedTypeHelpers.InterpolateInt32(baseValue, Value, splineProgress);