9 writes to Value
PresentationCore (9)
Core\CSharp\System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (3)
1179Value = value; 1188Value = value; 1198Value = value;
Core\CSharp\System\Windows\Media\Animation\Generated\KeyFrames.cs (3)
1923Value = value; 1932Value = value; 1987Value = (Quaternion)value;
Core\CSharp\System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (3)
1251Value = value; 1260Value = value; 1275Value = value;
12 references to Value
PresentationCore (12)
Core\CSharp\System\Windows\Media\Animation\Generated\DiscreteKeyFrames.cs (1)
1084return Value;
Core\CSharp\System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (2)
1238return Value; 1242return AnimatedTypeHelpers.InterpolateQuaternion(baseValue, Value, keyFrameProgress, UseShortestPath);
Core\CSharp\System\Windows\Media\Animation\Generated\KeyFrames.cs (1)
1983return Value;
Core\CSharp\System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (2)
786return Value; 790return AnimatedTypeHelpers.InterpolateQuaternion(baseValue, Value, keyFrameProgress, UseShortestPath);
Core\CSharp\System\Windows\Media\Animation\Generated\QuaternionAnimationUsingKeyFrames.cs (4)
647return GetResolvedKeyFrame(resolvedKeyFrameIndex).Value; 954Quaternion prevKeyValue = _keyFrames[index - 1].Value; 958Quaternion currentKeyValue = _keyFrames[index].Value; 985totalLength += AnimatedTypeHelpers.GetSegmentLengthQuaternion(prevKeyValue, _keyFrames[index].Value);
Core\CSharp\System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (2)
1309return Value; 1315return AnimatedTypeHelpers.InterpolateQuaternion(baseValue, Value, splineProgress, UseShortestPath);