9 writes to Value
PresentationCore (9)
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (3)
794Value = value; 803Value = value; 813Value = value;
System\Windows\Media\Animation\Generated\KeyFrames.cs (3)
1167Value = value; 1176Value = value; 1231Value = (Int64)value;
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (3)
806Value = value; 815Value = value; 827Value = value;
12 references to Value
PresentationCore (12)
System\Windows\Media\Animation\Generated\DiscreteKeyFrames.cs (1)
692return Value;
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (2)
853return Value; 857return AnimatedTypeHelpers.InterpolateInt64(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\Int64AnimationUsingKeyFrames.cs (4)
621return GetResolvedKeyFrame(resolvedKeyFrameIndex).Value; 930Int64 prevKeyValue = _keyFrames[index - 1].Value; 934Int64 currentKeyValue = _keyFrames[index].Value; 961totalLength += AnimatedTypeHelpers.GetSegmentLengthInt64(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\KeyFrames.cs (1)
1227return Value;
System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (2)
545return Value; 549return AnimatedTypeHelpers.InterpolateInt64(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (2)
861return Value; 867return AnimatedTypeHelpers.InterpolateInt64(baseValue, Value, splineProgress);