9 writes to Value
PresentationCore (9)
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (3)
676Value = value; 685Value = value; 695Value = value;
System\Windows\Media\Animation\Generated\KeyFrames.cs (3)
1035Value = value; 1044Value = value; 1099Value = (Int32)value;
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (3)
686Value = value; 695Value = value; 707Value = value;
12 references to Value
PresentationCore (12)
System\Windows\Media\Animation\Generated\DiscreteKeyFrames.cs (1)
625return Value;
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (2)
735return Value; 739return AnimatedTypeHelpers.InterpolateInt32(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\Int32AnimationUsingKeyFrames.cs (4)
636return GetResolvedKeyFrame(resolvedKeyFrameIndex).Value; 943Int32 prevKeyValue = _keyFrames[index - 1].Value; 947Int32 currentKeyValue = _keyFrames[index].Value; 974totalLength += AnimatedTypeHelpers.GetSegmentLengthInt32(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\KeyFrames.cs (1)
1095return Value;
System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (2)
475return Value; 479return AnimatedTypeHelpers.InterpolateInt32(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (2)
741return Value; 747return AnimatedTypeHelpers.InterpolateInt32(baseValue, Value, splineProgress);