9 writes to Value
PresentationCore (9)
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (3)
795Value = value; 804Value = value; 814Value = value;
System\Windows\Media\Animation\Generated\KeyFrames.cs (3)
1168Value = value; 1177Value = value; 1232Value = (Int64)value;
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (3)
812Value = value; 821Value = value; 833Value = value;
12 references to Value
PresentationCore (12)
System\Windows\Media\Animation\Generated\DiscreteKeyFrames.cs (1)
693return Value;
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (2)
854return Value; 858return AnimatedTypeHelpers.InterpolateInt64(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\Int64AnimationUsingKeyFrames.cs (4)
625return GetResolvedKeyFrame(resolvedKeyFrameIndex).Value; 934Int64 prevKeyValue = _keyFrames[index - 1].Value; 938Int64 currentKeyValue = _keyFrames[index].Value; 965totalLength += AnimatedTypeHelpers.GetSegmentLengthInt64(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\KeyFrames.cs (1)
1228return Value;
System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (2)
546return Value; 550return AnimatedTypeHelpers.InterpolateInt64(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (2)
867return Value; 873return AnimatedTypeHelpers.InterpolateInt64(baseValue, Value, splineProgress);