9 writes to Value
PresentationCore (9)
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (3)
295Value = value; 304Value = value; 314Value = value;
System\Windows\Media\Animation\Generated\KeyFrames.cs (3)
604Value = value; 613Value = value; 668Value = (Decimal)value;
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (3)
304Value = value; 313Value = value; 325Value = value;
12 references to Value
PresentationCore (12)
System\Windows\Media\Animation\Generated\DecimalAnimationUsingKeyFrames.cs (4)
625return GetResolvedKeyFrame(resolvedKeyFrameIndex).Value; 934Decimal prevKeyValue = _keyFrames[index - 1].Value; 938Decimal currentKeyValue = _keyFrames[index].Value; 965totalLength += AnimatedTypeHelpers.GetSegmentLengthDecimal(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\DiscreteKeyFrames.cs (1)
389return Value;
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (2)
354return Value; 358return AnimatedTypeHelpers.InterpolateDecimal(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\KeyFrames.cs (1)
664return Value;
System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (2)
238return Value; 242return AnimatedTypeHelpers.InterpolateDecimal(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (2)
359return Value; 365return AnimatedTypeHelpers.InterpolateDecimal(baseValue, Value, splineProgress);