9 writes to Value
PresentationCore (9)
Core\CSharp\System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (3)
1804Value = value; 1813Value = value; 1823Value = value;
Core\CSharp\System\Windows\Media\Animation\Generated\KeyFrames.cs (3)
2787Value = value; 2796Value = value; 2851Value = (Vector)value;
Core\CSharp\System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (3)
1916Value = value; 1925Value = value; 1940Value = value;
12 references to Value
PresentationCore (12)
Core\CSharp\System\Windows\Media\Animation\Generated\DiscreteKeyFrames.cs (1)
1540return Value;
Core\CSharp\System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (2)
1863return Value; 1867return AnimatedTypeHelpers.InterpolateVector(baseValue, Value, keyFrameProgress);
Core\CSharp\System\Windows\Media\Animation\Generated\KeyFrames.cs (1)
2847return Value;
Core\CSharp\System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (2)
1171return Value; 1175return AnimatedTypeHelpers.InterpolateVector(baseValue, Value, keyFrameProgress);
Core\CSharp\System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (2)
1974return Value; 1980return AnimatedTypeHelpers.InterpolateVector(baseValue, Value, splineProgress);
Core\CSharp\System\Windows\Media\Animation\Generated\VectorAnimationUsingKeyFrames.cs (4)
647return GetResolvedKeyFrame(resolvedKeyFrameIndex).Value; 954Vector prevKeyValue = _keyFrames[index - 1].Value; 958Vector currentKeyValue = _keyFrames[index].Value; 985totalLength += AnimatedTypeHelpers.GetSegmentLengthVector(prevKeyValue, _keyFrames[index].Value);