9 writes to Value
PresentationCore (9)
Core\CSharp\System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (3)
1554Value = value; 1563Value = value; 1573Value = value;
Core\CSharp\System\Windows\Media\Animation\Generated\KeyFrames.cs (3)
2355Value = value; 2364Value = value; 2419Value = (Single)value;
Core\CSharp\System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (3)
1650Value = value; 1659Value = value; 1674Value = value;
12 references to Value
PresentationCore (12)
Core\CSharp\System\Windows\Media\Animation\Generated\DiscreteKeyFrames.cs (1)
1312return Value;
Core\CSharp\System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (2)
1613return Value; 1617return AnimatedTypeHelpers.InterpolateSingle(baseValue, Value, keyFrameProgress);
Core\CSharp\System\Windows\Media\Animation\Generated\KeyFrames.cs (1)
2415return Value;
Core\CSharp\System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (2)
1017return Value; 1021return AnimatedTypeHelpers.InterpolateSingle(baseValue, Value, keyFrameProgress);
Core\CSharp\System\Windows\Media\Animation\Generated\SingleAnimationUsingKeyFrames.cs (4)
647return GetResolvedKeyFrame(resolvedKeyFrameIndex).Value; 954Single prevKeyValue = _keyFrames[index - 1].Value; 958Single currentKeyValue = _keyFrames[index].Value; 985totalLength += AnimatedTypeHelpers.GetSegmentLengthSingle(prevKeyValue, _keyFrames[index].Value);
Core\CSharp\System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (2)
1708return Value; 1714return AnimatedTypeHelpers.InterpolateSingle(baseValue, Value, splineProgress);