9 writes to Value
PresentationCore (9)
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (3)
670Value = value; 679Value = value; 689Value = value;
System\Windows\Media\Animation\Generated\KeyFrames.cs (3)
1027Value = value; 1036Value = value; 1091Value = (Int32)value;
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (3)
685Value = value; 694Value = value; 706Value = value;
12 references to Value
PresentationCore (12)
System\Windows\Media\Animation\Generated\DiscreteKeyFrames.cs (1)
617return Value;
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (2)
729return Value; 733return AnimatedTypeHelpers.InterpolateInt32(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\Int32AnimationUsingKeyFrames.cs (4)
625return GetResolvedKeyFrame(resolvedKeyFrameIndex).Value; 934Int32 prevKeyValue = _keyFrames[index - 1].Value; 938Int32 currentKeyValue = _keyFrames[index].Value; 965totalLength += AnimatedTypeHelpers.GetSegmentLengthInt32(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\KeyFrames.cs (1)
1087return Value;
System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (2)
469return Value; 473return AnimatedTypeHelpers.InterpolateInt32(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (2)
740return Value; 746return AnimatedTypeHelpers.InterpolateInt32(baseValue, Value, splineProgress);