9 writes to Value
PresentationCore (9)
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (3)
1544Value = value; 1553Value = value; 1563Value = value;
System\Windows\Media\Animation\Generated\KeyFrames.cs (3)
2295Value = value; 2304Value = value; 2359Value = (Single)value;
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (3)
1568Value = value; 1577Value = value; 1589Value = value;
12 references to Value
PresentationCore (12)
System\Windows\Media\Animation\Generated\DiscreteKeyFrames.cs (1)
1300return Value;
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (2)
1603return Value; 1607return AnimatedTypeHelpers.InterpolateSingle(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\KeyFrames.cs (1)
2355return Value;
System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (2)
1007return Value; 1011return AnimatedTypeHelpers.InterpolateSingle(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\SingleAnimationUsingKeyFrames.cs (4)
621return GetResolvedKeyFrame(resolvedKeyFrameIndex).Value; 930Single prevKeyValue = _keyFrames[index - 1].Value; 934Single currentKeyValue = _keyFrames[index].Value; 961totalLength += AnimatedTypeHelpers.GetSegmentLengthSingle(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (2)
1623return Value; 1629return AnimatedTypeHelpers.InterpolateSingle(baseValue, Value, splineProgress);