9 writes to Value
PresentationCore (9)
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (3)
294Value = value; 303Value = value; 313Value = value;
System\Windows\Media\Animation\Generated\KeyFrames.cs (3)
603Value = value; 612Value = value; 667Value = (Decimal)value;
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (3)
298Value = value; 307Value = value; 319Value = value;
12 references to Value
PresentationCore (12)
System\Windows\Media\Animation\Generated\DecimalAnimationUsingKeyFrames.cs (4)
621return GetResolvedKeyFrame(resolvedKeyFrameIndex).Value; 930Decimal prevKeyValue = _keyFrames[index - 1].Value; 934Decimal currentKeyValue = _keyFrames[index].Value; 961totalLength += AnimatedTypeHelpers.GetSegmentLengthDecimal(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\DiscreteKeyFrames.cs (1)
388return Value;
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (2)
353return Value; 357return AnimatedTypeHelpers.InterpolateDecimal(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\KeyFrames.cs (1)
663return Value;
System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (2)
237return Value; 241return AnimatedTypeHelpers.InterpolateDecimal(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (2)
353return Value; 359return AnimatedTypeHelpers.InterpolateDecimal(baseValue, Value, splineProgress);