9 writes to Value
PresentationCore (9)
Core\CSharp\System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (3)
429Value = value; 438Value = value; 448Value = value;
Core\CSharp\System\Windows\Media\Animation\Generated\KeyFrames.cs (3)
771Value = value; 780Value = value; 835Value = (Double)value;
Core\CSharp\System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (3)
453Value = value; 462Value = value; 477Value = value;
13 references to Value
PresentationCore (12)
Core\CSharp\System\Windows\Media\Animation\Generated\DiscreteKeyFrames.cs (1)
476return Value;
Core\CSharp\System\Windows\Media\Animation\Generated\DoubleAnimationUsingKeyFrames.cs (4)
647return GetResolvedKeyFrame(resolvedKeyFrameIndex).Value; 954Double prevKeyValue = _keyFrames[index - 1].Value; 958Double currentKeyValue = _keyFrames[index].Value; 985totalLength += AnimatedTypeHelpers.GetSegmentLengthDouble(prevKeyValue, _keyFrames[index].Value);
Core\CSharp\System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (2)
488return Value; 492return AnimatedTypeHelpers.InterpolateDouble(baseValue, Value, keyFrameProgress);
Core\CSharp\System\Windows\Media\Animation\Generated\KeyFrames.cs (1)
831return Value;
Core\CSharp\System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (2)
324return Value; 328return AnimatedTypeHelpers.InterpolateDouble(baseValue, Value, keyFrameProgress);
Core\CSharp\System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (2)
511return Value; 517return AnimatedTypeHelpers.InterpolateDouble(baseValue, Value, splineProgress);
PresentationFramework (1)
src\Framework\System\Windows\VisualStateManager.cs (1)
692return keyFrame.Value;